*{
    margin: auto;
    box-sizing: border-box;
}
nav{
    background-color: #8b0000;
    text-align: center;
    padding: 25px;
    font-family: Arial, Helvetica, sans-serif;
    color:white;
    text-shadow: 2px 2px 4px #000;
    margin-bottom: 60px;
}
body{
    background-color: #ffe3c6;
}
.navhead{
    font-weight: lighter;
    font-size: x-large;
    color: white;
}
.container{
    background-color: #fefbd8;
    border: 2px dashed #8b0000;
    border-radius: 10px;
    width:700px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 30px;
    box-shadow: 0px 5px 15px rgb(0, 0, 0, 0.2);
}
h1{
    text-align: center;
    color: #8b2222;
    font-family: Arial, Helvetica, sans-serif;
}
form{
    margin:15px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
textarea{
    width:90%;
    height: 100px;
    border: 2px solid #8b0000;
    border-radius: 10px;
    resize:none;
    margin-top:20px;
    margin-bottom:20px;
}
button{
    padding:10px 20px;
    background-color: #8b2222;
    color: white;
    border: 0 solid #b22222;
    border-radius: 10px;
}
.images{
    width:80%;
    overflow-x: hidden;
}
footer{
    background-color: #8b0000;
    text-align: center;
    padding: 25px;
    font-family: Arial, Helvetica, sans-serif;
    color:white;
}
img{
    width:200px;
    height:250px;
    margin-top: 50px;
    margin-bottom: 50px;
}
button:hover{
    background-color: #cc0000;
}