@media (max-width: 768px) {
.hero-title {
font-size: 28px;
}
}

/* FUENTES */

.schoolbell-regular {
  font-family: "Schoolbell", cursive;
  font-weight: 400;
  font-style: normal;
}

/* BODY */

body{
  margin: 0;

  background-image: url('https://f2.toyhou.se/file/f2-toyhou-se/images/113389258_NOuKZ6dJBDGUIya.png');
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
}

/* LAYOUT */

.layout {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 20px; /* gap between left and right */
    
  width: 95%;
  max-width: 800px;
  height: 600px;
  margin: 100px auto;
}

.main {
  border: 1px solid #333;
  box-sizing: border-box;

  display: flex;
  flex-direction: column;
  padding: 30px;
}

.right {
  display: grid;
  grid-template-rows: 70px 70px 1fr;
  gap: 20px; /* gap between the 3 right boxes */
}

.right > .box {
  border: 1px solid #333;
  box-sizing: border-box;

  display: flex;
  align-items: center;
  justify-content: center;
}

.box-main, .box{
  background-color: #f2b878;
}

/* TEXTO */

.paraiso{
  font-family: "Schoolbell", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;

  color: white;

  position: absolute;
  top: -40px;
  left: 42%;
  transform: translateX(-50%);
  z-index: 10;
}

p{
  font-family: "Helvetica", sans-serif;
  font-size: 20px;

  text-align: center;
}

a{
  font-family: "Schoolbell", cursive;
  font-size: 20px;

  text-decoration: none;

  color: white;

  text-align: center;
}