body{
    background: black;
    display:flex;
    align-items: center;
}

.navbar{
    width: 100vh;
    display: flex;
    border-radius: 12px;
    padding: 15px;
}

.navbar a{
    text-decoration: solid;
    color: azure;
    font-size: 20px;
    padding: 20px;
    transition: 0.5s;
}
.navbar a:hover {
    background:grey;  
    color: white;
    font-weight: bolder;
    border-radius: 5px;
    font-size: 22px;
}
