@import url('https://fonts.googleapis.com/css2?family=Inconsolata:wght@200&family=Nanum+Pen+Script&family=Square+Peg&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Inconsolata', monospace;
    
}
.banner{
    width: 100%;
    height: 100%;
}

body {
    background-color: #36393e;
}

h1 {
    color: whitesmoke;
}

h2 {
    color: whitesmoke;
    font-size: 30px;
}

p {
    color: whitesmoke;
    position: relative;
    bottom: -20px;
    font-size: 30px;
}

.about {
    color: whitesmoke;
    font-size: 30px;
    position: relative;
    bottom: -140px;
}

.navbar {
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

.navbar ul li a{
    text-decoration: none;
    color: whitesmoke;
    text-transform: uppercase;
    font-size: 30px;
}

.navbar ul li::after{
    content: '';
    height: 3px;
    width: 0%;
    background: #34eb89;
    position: absolute;
    bottom: -10px;
    left: 0;
    transition: 0.10s;
}

.navbar ul li:hover::after{
    width: 100%;
}

.content{
    width: 81%;
    position: absolute;
    top: 50%;
    transform: translateY(-100%);
    text-align: center;
}
