* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  width: 100%;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  background: url("fondo.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

.container {
  max-width: 960px;
  overflow: hidden;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

header {
  margin-top: 4em;
}
header img {
  width: 120px;
  margin: 20px;
}

.hero {
  max-width: 500px;
}

.hero {
  max-width: 300px;
}

main {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 4em;
  gap: 3em;
}

.btn {
  background-color: rgb(241, 195, 66);
  width: 150px;
  border-radius: 60px;
  padding: 1em 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: black;
  transition: ease all 0.3s;

  &:hover {
    transform: translateY(-5px);
    box-shadow: 2px 2px 2px #000;
  }
}
