* {
    box-shadow: none !important;
    outline: none !important;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    font-family: 'Cormorant Garamond';
    font-size: 20px;
    margin-top: 65px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
    color: var(--bs-secondary-color);
    text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
    text-align: start;
}

.text-wrapper {
    position: relative;
    display: inline-block;
    /* text-align: center; */
}

/* Big decorative text behind */
.accent-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* font-family: 'Great Vibes', cursive; /* or any script font */
    font-family: 'WindSong';
    font-size: 10rem;
    color: rgba(0, 0, 0, 0.1); /* light grey */

    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

/* Main readable text */
.main-text {
    font-size: 4rem;
    position: relative;
    z-index: 2;
}

.parallax {
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url('../resources/images/parallax-side-2.png');
    min-height: 400px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* IMPORTANT */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Inner content */
.parallax-content {
    /* text-align: center; */
    color: #fff;
    z-index: 1;
    padding: 2rem;
}

/* Mobile fallback */
@media only screen and (max-width: 1200px) {
    .accent-text {
        font-size: 6.3rem;
    }

    .main-text {
        font-size: 3.5rem;
    }

    .parallax {
        background-attachment: scroll;
    }
}

@media only screen and (max-width: 768px) {
    .accent-text {
        font-size: 6.3rem;
    }

    .img-landing {
        width: 580px;
    }

    .main-text {
        font-size: 3.5rem;
    }

    .parallax {
        background-attachment: scroll;
    }
}

@media only screen and (max-width: 414px) {
    .accent-text {
        font-size: 6.3rem;
    }

    .main-text {
        font-size: 3.5rem;
    }

    .parallax {
        background-attachment: scroll;
    }
}

@media only screen and (max-width: 375px) {
    .accent-text {
        font-size: 5.8rem;
    }

    .img-landing {
        width: 280px;
    }

    .main-text {
        font-size: 3rem;
    }

    .parallax {
        background-attachment: scroll;
    }
}

.img-filter {
    filter: grayscale(10%) contrast(1.4) brightness(0.8);
}

#countdown {
    display: flex;
    gap: 20px;
    justify-content: center;
}

    #countdown p {
        font-family: 'WindSong';
        margin: 0;
        text-align: center;
    }

    #countdown span {
        color: #57161F;
        display: block;
        font-family: 'Cormorant Garamond';
    }

/* width */
::-webkit-scrollbar {
    width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #57161F;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
