﻿body {
    margin: 0;
    padding: 0;
    background-color: #e10e3a;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.logo {
    max-width: 400px; /* Increased slightly for 1920 */
    width: 20%;
    min-width: 200px;
    height: auto;
}

.tagline {
    font-family: 'Bebas Neue', sans-serif;
    color: #c70c33;
    font-size: 3rem; /* Adjusted for better visibility at 1920 */
    margin-top: 200px;
    letter-spacing: 2px;
    text-align: center;
    padding: 0 20px;
}

/* Responsive adjustments for screens smaller than 1920px width */
@media (max-width: 1919px) {
    .tagline {
        margin-top: 10vh;
        font-size: 2.5rem;
    }
}

/* Responsive adjustments for tablet */
@media (max-width: 1024px) {
    .logo {
        width: 30%;
    }
    .tagline {
        margin-top: 80px;
        font-size: 2rem;
    }
}

/* Responsive adjustments for mobile */
@media (max-width: 600px) {
    .logo {
        width: 50%;
        min-width: 150px;
    }
    .tagline {
        margin-top: 50px;
        font-size: 1.5rem;
    }
}