@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.container{
    background: url(images/back.gif);
    height: 100vh;
    background-size: 100% 100%;
}
.container .navbar{
    width: 100;
    height: 80;
    background: white;
}
.navbar ul{
    float: right;
    margin-left: 20px;
}
.navbar .logo{
    display: inline-block;
    margin-right: 50px;
    margin-top: 20px
}
.navbar .logo a{
    text-decoration: none;
    font-size: 30px;
    font-family: sans-serif;
    color: #296424
}
.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 8px;
    line-height: 80px;
}
.navbar ul li a{
    color: rgb(6, 117, 117);
    text-decoration: none;
    font-size: 20px;
    padding: 6px 13px;
    font-family: Roboto;
}
.navbar ul li a.active,
.navbar ul li a:hover{
    background: #ff6e00;
    border-radius: 2px;
}
.navbar ul li a.active,
.navbar ul li a:hover{
    background: #ff6e00;
    border-radius: 2px;
}
.container .center{
    position: absolute;
    top: 50%;
    left: 50%;transform: translate(-50%,-50%);
    font-family: sans-serif;
    user-select: none;
}
.center h1{
    color: black;
    font-size: 70px;
    font-weight: bold;
    width: 900px;
    text-align: center;
}
.center a{
    color: rgb(0, 0, 0);
    font-size: 50px;
    font-weight: bold;
    width: 885px;
    margin-top: 10px;
    text-align: center;
    border: solid 1px rgb(0, 0, 0);
    cursor: pointer;
    outline: none;
    border-radius: 25px;
}
.center a:hover{
    background: rgb(103, 155, 133);
}