#home {
    height: 100dvh;

    display: flex;
    justify-content: center;
    align-items: center;

    background-image: url("../img/DSC04005-Enhanced-NR.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.countdown-bubble {
    background-color: #E28AA6;

    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    width: 180px;

    border-radius: 90px;

    transition: all 0.2s linear;
}

.countdown-label {
    font-size: 20pt;

    transition: all 0.2s linear;
}

.countdown-loading-icon {
    display: inline-block;

    transition: all 0.2s linear;
}

.countdown-number {
    color: #fff;
    font-size: 32pt;
    text-align: center;

    transition: all 0.2s linear;
}

.countdown-section {
    margin-top: 30px;

    transition: all 0.2s linear;
}

.name-banner {
    color: #fff;
    font-size: 70pt;
    font-weight: bold;
    text-align: center;

    transition: all 0.2s linear;
}

.tint-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100dvh;
    width: 100dvw;

    background-color: rgba(0, 0, 0, 0.4);
    z-index: 100;
}

.welcome-section {
    z-index: 101;
}

/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
    .name-banner {
        font-size: 30pt;
    }

    .countdown-bubble {
        height: 60px;
        width: 60px;
        border-radius: 30px;
    }

    .countdown-label {
        font-size: 7pt;
    }

    .countdown-number {
        font-size: 12pt;
    }

    .bi-arrow-clockwise {
        font-size: 18pt;
    }
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (min-width: 600px) {
    .name-banner {
        font-size: 36pt;
    }

    .countdown-bubble {
        height: 80px;
        width: 80px;
        border-radius: 40px;
    }

    .countdown-label {
        font-size: 9pt;
    }

    .countdown-number {
        font-size: 14pt;
    }

    .bi-arrow-clockwise {
        font-size: 22pt;
    }
}

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (min-width: 768px) {
    .name-banner {
        font-size: 45pt;
    }

    .countdown-bubble {
        height: 100px;
        width: 100px;
        border-radius: 50px;
    }

    .countdown-label {
        font-size: 10pt;
    }

    .countdown-number {
        font-size: 20pt;
    }

    .bi-arrow-clockwise {
        font-size: 24pt;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    .name-banner {
        font-size: 55pt;
    }

    .countdown-bubble {
        height: 120px;
        width: 120px;
        border-radius: 60px;
    }

    .countdown-label {
        font-size: 14pt;
    }

    .countdown-number {
        font-size: 24pt;
    }

    .bi-arrow-clockwise {
        font-size: 28pt;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
    .name-banner {
        font-size: 65pt;
    }

    .countdown-bubble {
        height: 150px;
        width: 150px;
        border-radius: 75px;
    }

    .countdown-label {
        font-size: 18pt;
    }

    .countdown-number {
        font-size: 28pt;
    }

    .bi-arrow-clockwise {
        font-size: 28pt;
    }
}

/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1500px) {
    .name-banner {
        font-size: 70pt;
    }

    .countdown-bubble {
        height: 180px;
        width: 180px;
        border-radius: 90px;
    }

    .countdown-label {
        font-size: 20pt;
    }

    .countdown-number {
        font-size: 32pt;
    }

    .bi-arrow-clockwise {
        font-size: 32pt;
    }
}