@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: 0;
  font-family: "Roboto", system-ui;
}

body {
  height: calc(100vh - 3rem);
  position: relative;
  background-image: url("../image/fondo.svg");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: cover;
}

header {
  height: 57vw;
  position: relative;
  max-height: 250px;
  max-width: 768px;
  margin: auto;
}

header .logo {
  box-shadow: 0 0 0.5rem gray;
  border-radius: 0.5rem;
  position: absolute;
  top: 2rem;
  right: 2rem;
  height: 30vw;
  max-height: 130px;
}

header .frase {
  background-image: url("../image/frase.svg");
  background-repeat: no-repeat;
  background-position: 2rem 3.5rem;
  background-size: auto 60%;
  display: block;
  height: 100%;
  position: relative;
}
@media (min-width: 640px) {
  header .frase {
    background-image: url("../image/frase_larga.svg");
  }
}

main {
  padding-top: 1rem;
}
.content-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  max-width: 768px;
  margin: auto;
  padding-top: 1rem;
}
/* 
#A8CF45 verde 
#51A8B1 azul
#A98F71 marron 
{
}
*/
button {
  padding: 1rem;
  width: 70%;
  max-width: 250px;
  margin: 0 auto;
  border-radius: 0.5rem;
  border: none;
  box-shadow: 0.2rem 0.2rem 0.5rem gray;
  background: #91b43b;
}

button a {
  text-decoration: none;
  font-weight: 600;
  color: white;
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-shadow: 0 0 0.3rem rgb(63, 63, 63);
}

footer {
  height: 4rem;
  position: fixed;
  width: 100%;
  bottom: 0;
  background-color: #3f8289;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

footer a {
  text-decoration: none;
  height: 2rem;
  width: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer a span {
  font-size: 1.5rem;
}
