/* Fuentes */

@import url('https://fonts.googleapis.com/css2?family=Martian+Mono:wght@200&display=swap');
/* Martian Mono*/

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap');
/* Roboto Condensed */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&display=swap');
/* Playfair Display */

    
/* aca preguntar a la profe para poner una imagen de fondo (gatos) en vez de un color */


/* nav de botones */

/*
    width: 80%;
    margin: auto;
    height: 20%;


    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
*/

.cuerpo{
  background-image: url('../img/fondo.jpg');

  height: 100vh;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;

  
  
  
}

/* Aca te agrego el código para la botonera */

.botonera{
  width: 80%; /* Establezco el ancho del elemento */
  margin: auto; /* Lo centro colocando los márgenes a la derecha e izquierda respectivamnte */
  height: 10vh;
  background-color: white;
  box-shadow: 2px 4px 10px 4px rgb(53, 49, 49);
  padding: 15px;
  

  /* Acomodo los botones dentro de la botonera */
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

}

/* Estilo de los botones */

.botones{
    margin: auto;
    height: auto;
    background: transparent;
    padding: 0;
    border: none;
  }

.botones{
  align-items: center;
  appearance: none;
  background-color: rgb(255, 206, 255);
  border-radius: 4px;
  border-width: 0;
  box-shadow: rgba(29, 22, 44, 0.4) 0 2px 4px,rgba(45, 35, 66, 0.3) 0 7px 13px -3px,rgb(233, 164, 233) 0 -3px 0 inset;
  box-sizing: border-box;
  color: #36395A;
  cursor: pointer;
  display: inline-flex;
  font-family: "JetBrains Mono",monospace;
  height: 48px;
  justify-content: center;
  line-height: 1;
  list-style: none;
  overflow: hidden;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  text-align: left;
  text-decoration: none;
  transition: box-shadow .15s,transform .15s;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
  will-change: box-shadow,transform;
  font-size: 18px;
}

.botones:focus {
  box-shadow: #D6D6E7 0 0 0 1.5px inset, rgba(45, 35, 66, 0.4) 0 2px 4px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgb(233, 164, 233) 0 -3px 0 inset;
}

.botones:hover {
  box-shadow: rgba(45, 35, 66, 0.4) 0 4px 8px, rgba(45, 35, 66, 0.3) 0 7px 13px -3px, rgb(233, 164, 233) 0 -3px 0 inset;
  transform: translateY(-2px);
}

.botones:active {
  box-shadow: #D6D6E7 0 3px 7px inset;
  transform: translateY(2px);
}

/* Formato Título */

.titulo{
    
    /* Tamaño */
    
    width: 70%;
    
    /* Disposición */

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    /* Propiedades */
   
    font-size: 100%;
    color: rgb(233, 164, 233);
    text-align: center;
    font-family: "JetBrains Mono",monospace;

    background-color: white;
    box-shadow: 2px 4px 10px 4px rgb(53, 49, 49);
}

/* Formato Info */

.info{

    /* Tamaño */

    width: 80%;
    margin: auto;
    margin-top: 3%;
    padding: 10px;

    /* Disposición */

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    background-color: white;
    box-shadow: 2px 4px 10px 4px rgb(53, 49, 49);

}

.foto{

  height: 33vh;
  width: 15%;

  display: flex;
  flex-direction: column;
  align-items: right;
}