@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
body {
    background-image: url(../img/bg-jurassic-world.jpg);
}
.page-wrapper {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-family: "open sans";
}
.header {
    display: flex;
    justify-content: space-between;
}
.footer {
    height: 40px;
    font-size: 15px;
    color: #D8D5B6;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header,
.footer {
    background-color: rgba(35, 24, 22, 0.75);
}
img {
    height: 50px;
    margin: 5px 0 5px 20px;
}
.menu {
    display: flex;
    align-items: center;
}
.menu ul {
    width: 350px;
    display: flex;
    justify-content: space-evenly;
}
.menu ul li {
    text-transform: uppercase;
    color: #BCBB83;
    font-size: 17px;
}
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
h1,
h2 {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}
h1 {
    
    font-size: 65px;
    line-height: 1.2;
    width: 400px;
}
h2 {
    font-size: 20px;
}
.form-wrapper {
    width: 400px;
    height: 250px;
    background-color: rgba(186, 192, 104, 0.75);
    display: flex;
    justify-content: center;
}
form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}
input {
    width: 350px;
    height: 35px;
    border: 0;
    margin: 0;
    padding: 3px;
    box-sizing: border-box;
}
input[type=submit] {
    background-color: #41351D;
    color: #D8D5B6;
}