body{
  background-color: rgb(156, 231, 181);
}



nav {
  max-width: 80%;
  display: flex;
  align-items: center;
  background-color: rgb(100, 180, 116);
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-weight: bolder;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;

}

nav ul li:hover {
    color: rgb(136, 211, 141);
    background-color: rgb(115, 195, 106);
}


nav ul li {
    margin: 15px;
    padding: 2rem;

    list-style-type: none;
    font-weight: lighter;
    display: inline-block;
    color: white;

    font-size: 1rem;
}
nav ul li a
 {
    text-align: center;
    display: inline-block;
    flex-wrap: nowrap;
    max-height: 5rem;
    align-items: center;
    justify-content: center;
    padding: 0.05rem;
    color: rgb(219, 238, 198);
}

article{
  margin: 1rem;
  background-color: rgb(100, 180, 116);
  border-radius: 1px;
  padding: 1rem;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;

}

footer{
    background-color: rgb(100, 180, 116);
    color: rgb(219, 238, 198);
    padding: 2rem;
    text-align: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

img {
    margin-top: 3%;
    margin-bottom: 1rem;
    border-radius: 5px;
    float: left;
}

p{
  font-family: Arial, Helvetica, sans-serif;
}

h1{
  font-family: Arial, Helvetica, sans-serif;
  font-size: x-large;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.1rem;
  margin-bottom: 0.5rem;
  display: flex;
  color: rgb(71, 142, 43);
}

h2{
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: larger;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

h3{
  font-family: Arial, Helvetica, sans-serif;
  font-size: medium;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

textarea {
    min-height: 80px;
    resize: vertical;
}

.box{
  border: 2px solid green;
  border-radius: 5px;
  display: flex;
}
.container{
  gap: 20px;
  grid-auto-rows: minmax(50px, auto);
}
.form {
    margin-top: 2rem;   
}

.form-row {
    margin-bottom: 1.6rem;
    display: flex;
    flex-direction: column;
}

article ul li{
  list-style: circle;
  font-family: Arial, Helvetica, sans-serif;
  background-position: 0 0;
  background-size: 1.6rem 1.6rem;
  background-repeat: no-repeat;
  margin-left: 1rem;
  margin-bottom: 0.3rem;
}
.button {
    color: rgb(219, 238, 198);
    padding: 1rem 2rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    cursor: pointer;
    justify-content: center;
}

@media screen and (max-width: 650px) {
    body{
        margin-left: 0.5rem;
        margin-right: 0.5rem;
        display: block;
        justify-content: center;
        width: 100%;
    }

    h1::after{
        content: none;
    }
    h1::before{
        content: none;
    }
    nav ul li{
       display: block;
       justify-content: center;
    }
    li::after{
        content: none;
    }
}