@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
}

.container{
    background: url(img/bg.jpg);
    height: 100vh;
    background-size: 100% 100%;
}

.container .navbar{
    width: 100%;
    height: 80px;
    background: rgba(22, 112, 214, 0.4);
}

.navbar .logo{
    display: inline-block;
    margin-left: 30px;
    margin-top: -6px;
}


.navbar ul{
    float:right;
    margin-right: 20px;

}

.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 8px;
    line-height: 75px;

}

.navbar ul li a{
    color: black;
    text-decoration: none;
    font-size: 20px;
    padding: 6px 13px;
    font-family: roboto;
}

.navbar ul li a.active,
.navbar ul li a:hover{
    background: #c12f2f;
    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: #c12f2f;
    font-size: 60px;
    font-weight: bold;
    width: 900px;
    text-align: center;
}

.center h2{
    color: whitesmoke;
    font-size: 70px;
    font-weight: bold;
    width: 885px;
    margin-top: 10px;
    text-align: center;
}