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

body {
    display: grid;
    place-items: center;
    background-image: url('./imagenes/fondo_idioma.jpg');
    background-size: cover;
    background-position: center;
    font-family: 'PT Serif', serif;
    animation: fadeInAnimation cubic-bezier(0.6, 0.04, 0.25, 1) 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

@keyframes fadeInAnimation {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }

.container {
    max-width: 1200px;
    display: flex;
    margin: auto;
}

.image-container {
    display: flex;
    align-items: center;
    width: 720px;
    height: 720px;
    max-height: 100%;
    max-width: 100%;
    justify-content: center;
    position: relative;
}

.portada {
    width: 100%;
}

.btn {
    position: absolute;
    border-radius: 10%;
    appearance: button;
    cursor: pointer;
    text-decoration: none !important;
    background-color: #e5e4d610;
    transition: background-color 0.4s ease-in-out;
  }

.btn:is(:hover, :focus) {
    background-color: #e5e4d630;
  }

#espanol {
    width: 11%;
    height: 5%;
    left: 36%;
    top: 89%;
  }
  
#quechua {
    width: 12%;
    height: 5%;
    left: 53%;
    top: 89%;
  }