
* {
    padding: 0;
    margin: 0;
}
header {
    background-color: #231c1A;
    height: 100px;
    width: 100%;
    position:fixed;
}
h1 {
    color: white;
    position:absolute;
    left:5%;
    top: 0;
    line-height: 80px;
}
h2 {
    color: #231c1A;
}
p {
    color: #231c1A;
}
header ul {
    position:absolute;
    left:60%;
    top: 0;
    line-height: 80px;
}
header ul {
    position:absolute;
    left: 5vx;
    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;
}
.news {
    background-color: antiquewhite;
    color: white;
    height: 80vh;
    background-image:url("images/board.JPG");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.news h2{
    font-size: 60px;
}
.news p {
    color: #5e4842;
    font-size: 18px;
    margin:25px 0;
}
.news a {
    color: #714d43;
    text-decoration: none;
    border: 1px solid #966f6f;
    padding: 10px 20px;
    border-radius: 5px;
}
.words {
    color: rgb(68, 52, 29);
    background-color: rgb(62, 82, 72);
    height:50px;
    display:flex;
    justify-content: center;
}
footer {
    background-color: #f9f7f7;
    color: rgb(38, 37, 37);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
}
.newsletter {
    background-color: #485652;
    color: white;
    padding:60px 0;
    display:flex;
    flex-direction: column;
    align-items: center;
}
.newsletter p {
    margin-bottom: 20px;
}
.newsletter input,.newsletter button {
    background-color: transparent;
    color:white;
    border:1px solid #949d9a;
    padding:10px;
    border-radius: 5px;
}
.newsletter input {
    width:200px;
    margin-right: 15px;
}
.newsletter button {
    width:80px;
    cursor:pointer;
}
input::placeholder {
    color:#DDDDDD;
}
input:focus {
    outline: none;
    border-color:#E0E9A3;
}