body {
    background-color: crimson;
    margin: 0;
    padding: 0;
}

p{
    color:seashell;
    font-family: 'Courier New', Courier, monospace;
}

h1{
    color:seashell;
    font-family: 'Courier New', Courier, monospace;
    font-size: 250%;
}

.topLogo{
    background-image: linear-gradient(to bottom, rgba(218, 22, 113, 0.8), rgba(233, 9, 9, 0.6)), url("prettycouple.jpg");
    background-position: center;
    z-index: -1;
    width: 100%;
    height: 100%;
    justify-content: center;
}

.topLogoContainer{
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

.navBar{
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: left;
    flex-direction: row;
    background-color: rgba(236, 100, 225, 0.562);
}

.navBarButton{
    background-color: rgb(184, 34, 34);
    width: 25%;
    color: white;
    border-color:rgba(218, 22, 113, 0.8);
}

.mainBody{
    margin-top: 25%;
}

.photoGallery{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.photoGallery p{
    font-size: 250%;
}

.photoRow{
    display:flex;
    flex-direction: row;

}

.photoRow div{
    display:flex;
    flex-direction: column;
}

.photo {
    height:auto;
    width: 25%;
    margin-right: 5%;
    margin-left: 5%;
}

.photo img{
    width: 100%;
    height: auto;
}

.photo p{
    font-size: 100%;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.email-form-container{
    color: seashell;
    font-family: fantasy;
    margin-left: 1%;
    margin-top: 2%;
}

.email-form-container input{
    background-color: rgb(255, 255, 255);
    color:rgb(0, 0, 0);
}

.email-form-container textarea{
    color:rgb(0, 0, 0);
    font-size: 125%;
    font-family: 'Times New Roman', Times, serif;
}

.submitButton{
    width: 250px;
    height: 75px;
    color:white;
    background-color: rgb(238, 24, 166);
    font-size: 200%;
    font-family: 'Times New Roman', Times, serif;
    border:none;
    box-shadow: inset 0 0 25px rgb(255, 255, 255);
}