
@keyframes bouncing {
  0% {
    transform: translateY(0px);
  }

  100%{
    transform: translateY(5px);
  }
}

body {
    background-color: #f1f1f1;
    font-family: "Roboto", 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    overflow-x: hidden;
}


nav{
    background-color: #9d7d6d;
    position: fixed;
    top: 0;
    z-index: 50;
    width: 100%;
}

nav p{
    color: white;
    font-size: 1.2rem;
    font-weight: 400;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    gap: .8rem;
    padding: 1rem;
    margin-top: 5.6rem;
}

.text{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    padding: .5rem;
    border-radius: 5px;
    box-shadow: 2px 2px #e9e9e9;
}

main h1{
    font-size: 2rem;
}

main p{
    font-size: 1.3rem;
}

ul li{
    font-size: 1.3rem;
    list-style-type: disc;
}

#whatsapp{
  padding: 8px 10px;
  font-size: 18px;
  line-height: 1.5;
  color: white;
  background-color: #9d7d6d;
  border: 2px solid #4e4e4e;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  position: fixed;
  inset: 91% 0 0 0;
  font-weight: 600;
  animation: bouncing .5s ease infinite alternate;
}
