:root {
    --accent-color: hsl(44.4, 84.4%, 59.8%);
    --heading-accent: hsl(44.4, 84.4%, 59.8%);
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: mandatory;
    scroll-snap-stop: always;
    height: 100%;
    background-color: #0a213f;
}

body {
    min-height: 100%;
    margin: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;

    background-repeat: no-repeat;
    background: linear-gradient(to bottom, #20c3f5, #004AAD);
    background-size: cover;
    background-attachment: fixed;

}

.app {
    position: absolute;
    height: 100%;
    overflow-y: scroll;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
    align-items: center;

    z-index: 1;
}


.ocean {
    height: 105%;
    box-sizing: border-box;
    width: 100vw;
    background: linear-gradient(to bottom right, #00000070, #00000000);
    z-index: -2;
    position: fixed;
}

.sponsor-img {
    width: auto;
}

.bubble-text {
    font-size: 4rem;
    color: #43e9ef;
    text-align: center;
    margin: 0;
    animation: pulse 10s infinite alternate forwards ease-in-out;
    font-family: "Space Mono", monospace;
}
/* 
img {
    width: 18vw;
    margin: auto 0;
    display: block;
    padding-left: 2vw;
} */

.img-holder {
    width: 100%;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.date {
    font-family: "interstate", sans-serif;
    font-weight: bold;
    text-align: center;
    margin: 0.5rem 0 1rem 0;
    color: var(--accent-color);
    font-size: 2.2rem;
    text-shadow: 1px 1px 2px rgb(0, 7, 32);
}

#timer {
    color: #cef1ec;
    width: 40vw;
}

.time-info {
    font-family: "interstate", sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    text-transform: uppercase;
    margin: 0;
}

#timer-values {
    display: flex;
    justify-content: space-around;
    margin: 0 0.25rem;
    align-items: center;
    font-size: 4rem;
    font-family: Helvetica, sans-serif;
    text-align: center;
}

.val {
    width: 100%;
}

#timer-labels {
    display: flex;
    justify-content: space-around;
    margin-top: 0;
    margin-bottom: 0;
    align-items: center;
    font-family: Helvetica, sans-serif;
    font-size: 1.2rem;
    text-align: center;
}

#timer-labels label {
    width: 100%;
}

.dual-col {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: first baseline;
    margin: 0 auto;
    width: 40vw;
}

.contact,
.sponsor {
    text-align: center;
    margin: 0;
    width: max-content;
}

.contact h1,
.sponsor h1 {
    font-family: "interstate", sans-serif;
    font-style: normal;
    text-transform: uppercase;
    color: var(--heading-accent);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.contact h3 a,
.sponsor h3, .sponsor h3 a {
    font-family: "Raleway", sans-serif;
    color: #ffffff;
    font-size: 1rem;
    margin: 0;
    font-weight: 300;
    text-decoration: none;
}

.bubbles {
    position: relative;
}

.bubble {
    position: fixed;
    border-radius: 50%;
    aspect-ratio: 1/1;
    background-color: rgb(38, 0, 255);
    width: 100px;
    left: 50px;
}

#footer {
    color: white;
    width: 100vw;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 0;
    z-index: 2;
    font-size: 1.05rem;
    font-family: "Inter", sans-serif;
    line-height: 1.5em;
}

#footer a {
    color: #ceeb3f;
}

#links {
    display: flex;
    justify-content: space-around;
    margin: 0 auto 0.5rem;
    padding: 0;
    width: 8vw;
}

.red, .blue {
    transition: all 0.15s;
    color: #fff;
}

.red:hover {
    color: #f04242;
}

.blue:hover {
    color: #40d6db;
}

#links a {
    text-decoration: none;
    color: initial;
    font-size: 2rem;
}

.sponsor-img {
   margin: 0 20px 20px 20px;
}

@keyframes pulse {
    0% {
        text-shadow: 1px 1px 3px #43e9ef, 1px 1px 3px #38bbd2;
    }
    50% {
        text-shadow: 1px 1px 7px #43e9ef, 1px 1px 7px #38bbd2;
    }
    100% {
        text-shadow: 1px 1px 2px #43e9ef, 1px 1px 2px #38bbd2;
    }
}

@media (max-width: 768px) {
    .bubble-text {
        font-size: 3rem;
    }

    img {
        width: 50vw;
    }

    .date {
        font-size: 1.5rem;
    }

    #timer {
        width: 60vw;
    }

    .time-info {
        font-size: 1rem;
    }

    #timer-values {
        font-size: 3rem;
    }

    #timer-labels {
        font-size: 1rem;
    }

    .dual-col {
        width: 95vw;
    }

    .contact,
    .sponsor {
        font-size: 1rem;
    }

    #footer {
        font-size: 1rem;
    }

    #links {
        width: 20vw;
    }

    #links a {
        font-size: 1.5rem;
    }

    .sponsor-img {
        display: block;
        margin: 20px auto;
    }
}
