*{
    margin: 0;
    padding:0;
    z-index: 1;
}
body{
    background: #6d0d28;
    max-width: 100vw;
}
#fondo-lanus{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin:auto;
    max-height: 80vh;
    max-width: 80vw;
}
h1{
    position: absolute;
    font-size: 4vh;
    color: white;
    text-shadow: black 2px 2px 2px;
    left:0;
    right: 0;
    margin: auto;
    font-family: 'Courier New', Courier, monospace;
    padding-top:2vh;
    width: 22ch;
    white-space: nowrap;
    overflow:hidden;
    animation:typing 1s steps(14) 1 normal;
}
@keyframes typing{
    from{
        width: 0ch;
    }
}
@media (max-width:600px)  { 
    h1{
        font-size: 7vw;
    }
}

#main{
    display: grid;
    grid-template-columns: 70% 30%;
    grid-template-rows: 100% 100%;
    padding-top: 6vh;
    background: #6d0d28; 
    height: 90vh;
    width: 100vw;
    justify-content: center;
    align-items: center;
}
#img-to-show{
    max-width: 90%;
    max-height: 90%;
    margin: auto;
    cursor:pointer;
    transition: transform 200ms;
}
.inactive:active{
    transform: scale(1.1);        
}
.button-container{
    display: flex;
    flex-direction: column;
    justify-content:space-between;
    width: 20vw;
    height: 70vh;
    margin:2%;
}
.button{
    display: inline-block;
    width: 100%;
    height: 10%;
}
.button-images{
    max-height: 25%;
    object-fit: contain;            
}
#button-again{
    background-color: green;
    color: white;
    height: 15%;
    transition:3s;
    opacity: 0;
}

.button {
   border-radius: 11px;
  color: #fff;
  cursor: pointer;
  font-family: Mija,-apple-system,BlinkMacSystemFont,Roboto,"Roboto Slab","Droid Serif","Segoe UI",system-ui,Arial,sans-serif;
  font-size: 1.15em;
  font-weight: 700;
  text-shadow: rgba(0, 0, 0, .3) 1px 1px 1px;
  transition: filter 200ms;
}
.button:hover{
    filter: brightness(1.75);
}
.button-coger{
    background: #e62143;
}
.button-casar{
    background-color: #6200ee;
}
.button-matar{
    background: linear-gradient(#464d55, #25292e);
}

