@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,700;1,400&display=swap");

/******************* COMMONS *******************/
body {
  font-family: Montserrat;
  font-size: 16px;
}
h1 {
  font-size: 22px;
  margin-bottom: 0;
}
h4{
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  text-align: center;
  padding-left: 5%;
  padding-right: 5%;
  margin-bottom: 0;
}
a {
  text-decoration: none;
}
section,
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 600px;
  margin: auto;
  margin-bottom: 20px;
  padding: 0 8px;
}

/******************* Banner *******************/
section.banner img {
  border-radius: 8px;
  width: 100%;
  
}

/******************* HEADER *******************/
section.header {
  margin-top: 1%;
  margin-bottom: 3%;
}
section.header img {
  max-width: 120px;
  border-radius: 10%;
  margin-bottom: 0;
}

/******************* LINKS *******************/
section.links .link-item {
  width: 80%;
  margin-bottom: 12px;
  
}
section.links .link-item a {
  display: block;
  width: 100%;
  border: 1px #000 solid;
  padding: 18px 0;
  text-align: center;
  color: #ffffff;
  border-radius: 180px;
  box-shadow: 4px 4px rgb(0, 0, 0);
  background-color: #65C430;
}
section.links .link-item a:hover {
  color: #174B33;
}
@keyframes shake {
  0% {
    transform: translateX(-5px);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}

/******************* FOOTER *******************/
footer a {
  color: rgb(0, 0, 0, 0.6);
}
