body {
    margin: 0;
    padding: 0;
    font-family: Arial;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 98%;
    height: 80px;
    padding: 2px 90px;
    box-sizing: border-box;
    background: #4b4bf7;
    background-color: #0002;
}

nav .logo {
    padding: 15px 20px;
    height: 40px;
    float: left;
    font-family: hobo std;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    color: rgb(235, 231, 13);
    text-decoration: none;
}

nav .logo:hover {
    padding: 15px, 0px, 0px, 15px;
    border-radius: 6px;
    color: white;
}

nav ul {
    list-style: none;
    float: right;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin-right: 30px;
}

nav ul li a {
    line-height: 80px;
    color: rgb(196, 189, 189);
    padding: 12px, 30px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: bold;
}

nav ul li a:hover {
    background: rgb(243, 200, 8);
    color: #0c0c0c;
    border-radius: 6px;
}

nav ul li a.active {
    background: #e2472f;
    color: rgb(247, 243, 243);
    border-radius: 6px;
}

section {
    width: 100%;
    height: 100vh;
    background: url('image_2.jpg');
    background-size: cover;
    background-position: center;
}

footer {
    width: 98%;
    height: 2vh;
    padding: 15px;
    text-align: center;
    color: #f8f8fc;
    background-color: rgba(53, 53, 92, 0.918);
    font-size: 12px;
}