* {
    padding:0;
    margin:0;
}
header {
    background-color:rgba(35,28,26,0.8);
    height:80px;
    width:100%;
    position:fixed;
}
h1 {
    color:white;
    position:absolute;
    left:120px;
    top:0;
    line-height:80px;
   
}
header ul {
    position:absolute;
    right:5vw;
    top:0;
    line-height:80px;
}
header li {
    display:inline;
    margin-right:4vw;
}
header a {
    color:white;
    text-decoration:none;

}
header a:hover {
    text-decoration:underline;
}
.one {
    background-color:antiquewhite;
    color:white;
    height:95vh;
    background-image:url(images/4.jpg);
    background-repeat:no-repeat;
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
.one h2 {
    font-size:60px;
    margin-top:60px;
}
.one p {
    color:bisque;
    font-size:18px;
    margin:25px 0;
}
.one a {
    color:white;
    text-decoration:none;
    border:1px solid white;
    padding:10px 20px; 
    border-radius:5px;
}
.one a:hover {
    text-decoration:underline;
}
.two {
    background-color:rgb(106, 75, 9);
    color:white;
    height:150px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    line-height:1.8em;
    border:4px white dotted;

}
footer {
    background-color:#000000;
    color:#B7B7B7;
    height:30px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:14px;
}
.three {
    display:flex;
}

.three img {
    width:50%;
}
.info {
    width:50%;
    background-color:white;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}
.info h2 {
    font-size:30px;
    margin-bottom:30px;
}
.info p{
    font-size:19px;
    text-align:center;
    line-height:2em;
}
.email {
    background-color:rgb(146, 85, 6);
    color:white;
    padding:35px 0;
    display:flex;
    flex-direction:column;
    align-items:center;
}
.email p {
    margin-bottom:20px;
}
.email input,.email button {
    background-color:transparent;
    color:white;
    border:1px solid #949d9a;
    padding:10px;
    border-radius:5px;
}
.email input {
    width:200px;
    margin-right:15px;
}
.email button {
    width:80px;
    cursor:pointer;
}
input::placeholder {
    color:#DDDDDD;
}
input:focus {
    outline:none;
    border-color:#E0E9A3;
}