body{
    font-family: Arial, sans-serif, Roboto;
    margin: 0%;
    padding: 0%;
}

.navbar{
    background-color: rgb(17, 15, 15);

}
.navbar a{
    display: flex;
    gap: 5em;
    list-style: none;
    text-decoration: none;
    color: #ff0000;
    cursor: pointer;
    text-shadow: #ffffff;
    font-weight: bold;
}
.navbar a:hover{
    color: #c3beaf;
}
.navbar li{
    position: relative;
    display: inline-block;
    padding: 3em;
    font-size: 1.8em;
    top: 0px;
    transition: top 1.0s ease;
}

.logo a{
    position: absolute;
    right: 65px;
    top: 15px;
    font-size: 1.5em;
    color: #ffffff;
    font-weight: bold;
    text-shadow: 2px 2px 4px #f5f5f5;
}
.logo{
    position: absolute;
    top: 17px;
    right: 0px;
    width: 205px;
    height: 205px;
    border-radius: 18px;
    background-image: url(NextDestiny.png);
    background-size: cover;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}
.logo a:hover{
    color: #fb0000;
}

.content h1{
    color: #d6d6d6;
    text-align: center;
    font-size: 2em;
}

.navbar, main{
    margin: 0px;
    padding: 0px;
}

main{
    background-color: #313131;
    padding: 0px;
    margin: 0px;
    height: 100vh;
     background-image: url(NextDestiny.png)
}

}