* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    width: 100vw;
}


.page-wrapper {

    display: grid;
    grid-template-rows: auto;
}

.container-two {
    background-color: blue;
    height: auto;
    width: 100vw;
}




#header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    background-color: #d25525;
    position: fixed;
    width: 100vw;
    height: fit-content;

    z-index: 100;
}

#header-img {
    order: 1;
    width: 150px;
    padding: 2px;

}

#nav-bar {
    order: 2;
}

#nav-items {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

#nav-items a {

    padding: 20px;
    text-decoration: none;
    color: white;
    text-align: center;
    font-weight: 900;
}

@media only screen and (max-width: 600px) {
    * {
        font-size: 95%;

    }

    #header {
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;


    }

    #container-one {
        margin-top: 100px;
    }

    #image-one {
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 100vw;


    }

    hr {
        border: 1px solid #d25525;
    }


    #nav-bar {
        margin-bottom: 10px;
    }

    #contact-video-section {
        size: 100svw;

    }

    #form {
        flex-direction: column;
    }
}


#container-one {

    position: relative;

    width: 100vw;

}




#image-one,
#image-two,
#image-three {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100vw;


}

.welcome-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(99, 41, 28, 0.2);
    padding: 10px;
}



h1,
h2,
li {
    font-family: 'Anton', sans-serif;
    text-align: right;

}



p {
    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
    color: white;
    size: 1rem;
    text-align: right;
    font-weight: 800;
    margin-top: 10px;
}

#welcome-text-one {


    color: #d25525;
    font-size: 2vw;
    font-weight: 900;

}

#welcome-text-two {


    color: white;
    font-size: 4vw;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-weight: 900;
}

hr {
    border: 2px solid #d25525;
}

.container-three {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    justify-content: center;
    padding: 5%;
    width: 100vw;
    background: linear-gradient(to bottom, white 40%, #d25525 60%);
}

.grid-item {
    padding: 15px;
    justify-content: stretch;
}

.gallery-image {
    width: 25vw;
    height: auto;
    border: 3px solid white;
    box-shadow: 2px 2px 4px #e84b0f;
}

.gallery-text {
    text-align: center;
    margin-top: 5%;
    margin-left: 5%;
    margin-right: 5%;
    line-height: 1.2;
    
}

#header-gallery {
    font-family: 'Anton', sans-serif;
    text-align: center;
    color: #d25525;


}

#description-gallery {

    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
    color: #d25525;
    size: 1rem;
    text-align: center;
    font-weight: 800;
    margin-top: 20px;

}

#span-1 {
    color: white;
    text-transform: uppercase;
    background-color: rgba(210, 85, 37, 1);
    margin-bottom: 20px;
    letter-spacing: 5px;
}

#contact-video-section {
    position: relative;
}

.video-form-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    background-color: transparent;
    width: 80svw;
    height: auto;
    align-items: center;
    justify-content: space-around;
    padding: 10px;
}

#video {
    width: 50svw;
    height: auto;
}

#contact-form {
    align-items: center;

}

#subscribe-text {
    color: #e84b0f;
    font-size: 3vw;
    text-align: center;
    letter-spacing: 0.5px;
}

#subscribe-description-text {
    font-size: 2vw;
    text-align: center;
    color: #e84b0f;
}

#form {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 30px;
    gap: 10px;
}

#email {
    padding: 10px 25px;
    border-radius: 6px;
    border: 1px solid #CAD3DB;
    width: 320px;
    font-size: 1vw;
    color: #0F121F;

}

#submit {

    padding: 10px 25px;
    border-radius: 6px;
    border: 1px solid #d25525;
    width: 180px;
    font-size: 1vw;
    color: white;
    background-color: #d25525;

}