@import url('https://fonts.googleapis.com/css2?family=Comfortaa&family=Lobster&display=swap');

* {
    margin: 0;
    padding: 0;
}

body {    
    background: linear-gradient(to left, black, yellow)
}

#logo {
    height: 30vh;
    position: absolute;
    top: 40%;
    left: 51%;
    transform: translate(-40%, -50%);
}

nav ul {
    float: right;
}

nav ul li {
    display: inline-block;
    padding-right: 20px;
    padding-top: 25px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-family: lobster;
    font-size: 30px;
    position: relative;
}

nav ul li a::after {
    content: "";
    position: absolute;
    background-color: yellow;
    width: 0%;
    height: 3px;
    left: 0;
    bottom: -10px;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

#title {
    color: white;
    position: absolute;
    padding-top: 65vh;
    padding-left: 45%;
    font-family: lobster;
    font-size: 65px;
}

#subtitle {
    color: white;
    position: absolute;
    padding-top: 85vh;
    padding-left: 35%;
    font-family: lobster;
    font-size: 45px;
}
