

body {
  margin: 0;
  background-image: url("fondo.png");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.page {
  width: 1000px;
  margin: 0 auto;
  position: relative;
}

.header {
  background: transparent;
  text-align: center;
  padding: 0;
  margin-top: 100px; /* ajusta según tu fondo */
}

.header h1 {
  position: relative;
  top: 20px; 
  margin-top: 20px;
  font-family: 'keshia';
  font-size: 60px;
}

.content {
  height: 250px;
}

/* LAYOUT PRINCIPAL */
.main {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-top: 100px; 
}

/* SIDEBAR (GATO) */
.sidebar {
  
  width: 400px;
  height: 624px;

  background-image: url("ga-Photoroom.png");
  background-size: contain;
  background-repeat: no-repeat;
  
 position: relative;
 left: -130px;  
 margin-top: -250px;
 margin-right: -30px;

  display: flex;
  flex-direction: column;
}

/* BOTONES */
.sidebar a {
 
 position: relative;
 left: 55px; 
 transform: translateY(240px);
  margin: 6px 0;
  padding: 10px 15px;
  border-radius: 12px;
  text-decoration: none;
  font-family: 'keshia';
  font-size: 27px;
  color: black;

}

/* CAJA PRINCIPAL (BLANCA) */
.content {
  position: relative;
  left: -210px;
  margin-top: -30px;
  flex: 1;
  background: #ffffff;
  padding: 30px;
  border-radius: 30px;
  margin-right: -125px;

  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.content h2 {
  margin-top: 0;
  font-size: 28px;

}

/* CINNAMOROLL */
.dog {
  left: 800px;
  position: absolute;
  top: -300px;
  right: 20px;
  width: 300px;
  }
  
  
 

