*{
    padding: 0;
    margin: 0;
}
html{
    font-family: "Montserrat", sans-serif;
}
.logo{
    /* background-color: aqua; */
    width: 12%;
    
}
img{
    width: 100%;
    color: #fff;
}
.container{
    margin: 0 auto;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    background-color: #2C4E35;
    color: #fff;
    padding: 15px 20px;
    margin-top: 20px;
    border-radius: 50px;
    color: #fff;
    align-items: center;
}
nav{
    font-size: .9rem;
}
ul{
    list-style: none;
}
ul li{
    text-decoration: none;
    display: inline-block;

}
a{
    display: inline-block;
    text-decoration: none;
    color: #fff;
    padding: 0 15px 10px 15px;
    border-bottom: 1px solid transparent;
    transition: all .5s ease;
}
a:hover{
    color: yellow;
    border-bottom: 1px dotted yellow;
    padding-bottom: 10px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .logo{
        display: none;
    }
    .container {
      flex-direction: column;
      align-items: center;
      border-radius: 0;
      margin-top: 0;
    }
    ul li{
        text-decoration: none;
        display: block;
        text-align: center;
    
    }
    a{
        padding: 20px;
        text-align: center;
    }
  }
