nav{
    height: 80px;
    background: #231717;
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: "Irish Grover", serif;
    font-weight: 400;
    font-style: normal;
      
}
.nav-link{
    text-decoration: none;
    font-size: 27px;
}

@media (max-width: 600px){
    nav{
        display: flex;
        flex-direction: column;
        height: 250px;
    }
}