/* * {
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
} */

html, body {
    height: 100%;
}

h1 {
    font-family: 'Roboto', sans-serif;
    font-weight: 300 !important;
    color: rgb(49, 49, 49);
}

h4 {
    font-family: 'Parisienne', cursive; 
    font-size: 30px;
}

/* header styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    height: 125px;
    width: 100%;
    background-color: none;
    box-sizing: border-box;
    padding: 0;
    box-shadow: none;
    transition: background-color 0.15s ease-out;
    transition: height 0.35s;
    z-index: 5;
}

header.scroll {
    /* background-color: rgb(245, 245, 245); */
    /* box-shadow: 0 .5px 1px 0 rgba(0, 0, 0, 0.2), 0 .75px 2.5px 0 rgba(0, 0, 0, 0.19); */
    position: fixed;
}

#content-wrapper {
    display: -webkit-box;
    display: flex;
    -webkit-flex: 1 0 auto;
    flex: 1 0 auto;
    flex-direction: column;
    align-items: center;
    width: 100vw;
}

#banner-image img {
    width: 100vw;
    height: 34.5vw;
}

#banner-image2 img {
    width: 100vw;
}

#wedding-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100vw;
}

.opening-gallery {
    width: 100vw;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    min-height: 500px;
    background-color: #f5f5f5;;
}

.opening-gallery-images img {
    height: 250px;
    margin: 20px;
}

#details {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 575px;
    width: 100vw;
}

#details a:hover {
    color: rgb(133, 133, 133) !important;
}

.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.countdown-container h1 {
    margin: 25px 0;
}

#countdown-number-boxes {
    display: flex;
    flex-direction: row;
    width: 700px;
    justify-content: space-around;
}

.number-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 40px;
    font-weight: 300 !important;
}

.number-box p {
    font-size: 17.5px;
    font-weight: 300 !important;
    color: rgb(49, 49, 49);
}

@media only screen and (max-width: 1225px) {
    header {
        position: static;
    }

    header.scroll {
        position: static;
    }
}

@media only screen and (max-width: 850px) {

    #opening-gallery {
        width: 100vw;
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        height: 600px;
        background-color: #f5f5f5;;
    }
}

@media only screen and (max-width: 615px) {
    
    #details h1 {
        font-size: 20px;
    }

    #content-wrapper {
        display: -webkit-box;
        display: flex;
        -webkit-flex: 1 0 auto;
        flex: 1 0 auto;
        flex-direction: column;
        align-items: center;
        width: 100vw;
    }

    .opening-gallery-images img {
        height: 225px;
        margin: 5px 0 5px 0;
    }
    
    #countdown-container {
        margin-top: 150px;
        min-height: 500px;
    }

    #countdown-container h1 {
        text-align: center;
        width: 275px;
        font-size: 20px;
    }

    #countdown-number-boxes {
        display: flex;
        flex-direction: column;
        width: 300px;
        justify-content: space-around;
    }

    .number-box {
        margin-bottom: 20px;
    }
}

