header {
  
  font-family:  "Fredericka the Great", serif;
  font-size: 100px;
  color: rgb(255, 255, 255);
  text-align: center;
   text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.7),
        0px 0px 10px rgba(255, 0, 157, 10);

}

body {

button {

    width: clamp(250px, 300px, 350px);
    height: clamp(140px, 172px, 200px);
    font-size: clamp(30px, 45px, 50px);

display: flex;
justify-content: center;
align-items: center;
background-size: contain;
background-position: center;
background-repeat: no-repeat;
background-image: url(fondo\ botones.jpg);
border-radius: 15px 15px 15px;

box-shadow: 2px 0px 15px mediumvioletred;
font-size: 3em;
font-family: "Passions Conflict", cursive;
padding: 10% 10%;
border: 2px solid rgb(255, 255, 255)

}

button:hover {
  filter: hue-rotate(0deg) contrast(1.3)
}

#container-principal {
  border: 5px solid rgb(255, 0, 157);
background-image: url('http://dl7.glitter-graphics.net/pub/676/676657yhxq5o5bjd.gif');
  background-attachment: fixed;
  background-repeat: repeat;
  width: 80%;
  min-height: 250px;
  height: 70%;
  
position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);

}

#container-1 {
    position: absolute;
    top: 10%;
    left: 6%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    width: 80%;
    gap: 100px; /* Espacio entre botones */
   
}

#container-2 {
      position: absolute;
    top: 50%;
    left: 6%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    width: 80%;
     gap: 100px; /* Espacio entre botones */
}

}