* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
    overflow: hidden;
}

body {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #C1272D;
    /* Fallback color */
    font-family: 'new-science', sans-serif;
    position: relative;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.coming-soon {
    font-family: "new-science-extended", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 122.86%;
    text-align: center;
    letter-spacing: -0.06em;
    text-transform: uppercase;
    color: #000000;
    padding: 0 20px;
}

.sound-icon {
    position: absolute;
    bottom: 30px;
    left: 30px;
}

.sound-icon svg {
    width: 32px;
    height: 32px;
}

.footer {
    position: absolute;
    bottom: 30px;
    text-align: center;
    font-family: "new-science-extended", sans-serif;
    font-weight: 500;
    font-size: 9px;
    line-height: 101%;
    letter-spacing: 0%;
    color: #000000;
    padding-bottom: 10vh;
}

/* Responsive Design */
@media (max-width: 768px) {
    .coming-soon {
        font-size: 32px;
        padding: 0 30px;
    }

    .footer {
        margin-bottom: 10px;
        /* padding: 0 20px; */
    }
}

@media (max-width: 480px) {
    .coming-soon {
        font-size: 28px;
        padding: 0 40px;
    }

    .footer {
        bottom: 15px;
        /* margin-bottom: 5px; */
        font-size: 7px;
    }
}