*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{
    background: black;
    color: white;
}
header{
    height: 390px;
    text-align: center;
    vertical-align: bottom;
    background-image: url(title.jpg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: center center;
}
#menu, #main{
    width: 80%;
    margin: 10px auto;
}
#menu ul{
    list-style-type: none;
    display: flex;
}
#menu li{
    width: 25%;
    margin: 5px;
}
li.border{
    padding: 0px;
}
li.border div{
    padding: 10px;
}
a{
    text-decoration: none;
    color: rgb(255, 255, 128);
    cursor: pointer;
    display: block;
    padding: 10px;
}
a:hover{
    background: #333;
}
.border{
    border: 5px white solid ;
    border-radius: 8px;
    padding: 10px;
    margin-bottom: 10px;
}
.border li{
    margin-left: 30px;
}
footer{
    text-align: center;
}
input{
    padding: 5px;
    margin-bottom: 5px;
}
textarea{
    padding: 5px;
    margin-bottom: 5px;
}
.message{
    color: red;
}