*{
    margin: 0;
    padding: 0;
    font-family: serif;
}
header{
    background-image:url(baka.jpg);
    height: 100vh;
    background-size: cover;
    background-position: center;
}
ul{
    float: right;
    list-style-type: none;
    margin-top: 25px;
}
ul li{
    display: inline-block;
}
ul li a{
    text-decoration: none;
    color: antiquewhite;
    padding: 5px 20px;
    border: 1.5px solid transparent;
    transition: 1s ease;
}
ul li a:hover{
    background-color: beige;
    color: antiquewhite;
    
}
ul li.active a{
     background-color: beige;
    color: antiquewhite;
}
.logo img{
    float: left;
    width: 150px;
    height: 100px;
}
.main{
    max-width: 1200px;
}
.title{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
        
}
.title h1{
    color: aqua;
    font-size: 25px;
}