* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-image: linear-gradient(rgb(22, 16, 16), rgb(151, 110, 110));
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 0.2em;
}

.tagline {
    font-size: 1.2em;
    font-weight: lighter;
    margin-bottom: 1.5em;
}

h2 {
    font-size: 2em;
    margin-bottom: 1em;
}

.under-construction {
    background-color: #222121;
    display: inline-block;
    padding: 0.2em 1em;
    margin-bottom: 2em;
    border-radius: 50px;
}

.under-construction-text {
    font-size: 2em;
}

.info {
    font-size: 1em;
}

.info a {
    color: #d4af37;
    text-decoration: none;
}

.info a:hover {
    text-decoration: underline;
}

.logo {
    width: auto;
    height: 250px;
}

.comming-soon {
    font-size: 9rem;
    width: fit-content;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .under-construction {
        font-size: 0.9em;
        padding: 0.4em 0.8em;
    }
    
    .info {
        font-size: 0.9em;
    }

    .logo {
        width: auto;
        height: 200px;
    }

    .comming-soon {
        font-size: 4.2em;
        width: fit-content;
    }

}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
    .under-construction {
        font-size: 0.8em;
        padding: 0.3em 0.7em;
    }
    
    .info {
        font-size: 0.8em;
    }
    .logo {
        width: auto;
        height: 150px;
    }

    .comming-soon {
        font-size: 2.2em;
        width: fit-content;
    }
}
