body {
    font-family: 'Poppins', 'Arial Narrow', Arial, sans-serif;
    margin: 0;
    min-height: 100vh;
    background: white;
}

.navbar {
    /* background: linear-gradient(to right bottom, cyan, blue); */
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 10vh;
}

.logo{
    display: flex;
    align-items: center;
}

.navbar img{
    width: 8vh;
    height: 8vh;
}

.navbar a {
    text-decoration: none;
    font-size: 2vh;
    /* background: -webkit-linear-gradient(cyan, blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
    color: white;
    transition-property: transform;
    transition-duration: 0.25s;
}

.navbar a:hover {
    transform: scale(1.2);
}

.navbar .logo {
    font-size: 4vh;
    font-weight: bold;
    color: white;
}