@font-face{
    font-family: abster;
    src: url(../font/abster-webfont.woff) format('woff');
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Jua;
    color: white;
}

body{
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url(../images/room.jpg)
}

a {
    color: white;
}

.container {
    width: 100vw;
    height: 100vh;
}

.header {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu {
    width: 80%;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.menu_li {
    display: inline-block;
    margin:0 10px;
}

.menu_text {
    text-decoration: none;  
    color: white;
}
        
.menu_text:hover{
    color: #1fdfdf;
}

.menu_title{
    text-decoration: none;  
    color: white;
    font-family: abster;
}

.header_main{
    width : 100%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color:  white;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.header_main_title{
    font-size: 60px;
    margin-bottom: 16px;
}

.header_main_description{
    margin-top: -20px;
    font-size: 20px;
}

.header_main_button{
    background: none;
    border: 2px solid darkseagreen;
    color:  white;
    padding: 15px 20px;
    border-radius: 20px;
    margin-top: 20px;
    outline: none;
    cursor: pointer;
    transition: .4s;
    font-size: 20px;
}

.header_main_button:hover{
    background-color: darkslategray;
}


@keyframes header_down {
    from {
      transform:translate(-50%, -50%) rotate(1deg);
    }
    to {
      transform:translate(-50%, -50%) rotate(-1deg);
    }
  }

.main {
    width: 100%;
    height: 100px;
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.description {
    margin-top: 50px;
}

img {
    border-radius: 1000px;
    background-color: aliceblue;
    height: 200px
}
