/* Estilos básicos para no quedar ciego */
body {
    font-family: sans-serif;
    line-height: 1.6;
    max-width: 800px;
    height: 100vh;
    margin: 0 auto;
    padding: 0;
    background-image: url('windows_xp.jpg');
    background-size: cover;;
    background-repeat: no-repeat;
    background-position: left bottom;
    /*background-color: #8de5e2;*/
    color: #333;

    display: grid;
    grid-template-columns: auto min-content;
    grid-template-rows: min-content auto;
}

.texto{
    align-self: center;
    grid-column: 1/3;
    grid-row: 1;
    color: aliceblue;
    text-shadow: 2px 2px 4px #000000;
}
h1{
    text-align: center;
    font-size: 90px;
    margin: 30px 0 0 0;
}
h2{
    text-align: center;
    font-size: 60px;
    margin: 0;
}
p{
    font-size: 25px;
    margin: 0;
}
.puerta{
    display: block;
    position: relative;
    align-self: flex-end;
    top: 0;
    left: 30px;
    grid-column: 1;
    grid-row: 2;
    margin: 0;
}
.cerrada{
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    height: 500px;
}
.cerrada:hover{
    opacity: 0;
}
.abierta{
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    height: 500px;
}
.oguri{
    grid-column: 2;
    grid-row: 2;
    align-self: flex-end;
    margin: 0;
    z-index: 2;
    width: min-content;
    height: 500px;
}
