body {
    background-color: #201711;
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: url("../img/cursor.png"), default;
}

#container {
    position: relative;
    transform: scale(1.7);
    transform-origin: center;
}

.layer {
    position: absolute;
    width: 238px;
    height: 497px;
    image-rendering: pixelated;
    background-size: 100%;
}

#background {
    position: relative;
    width: 239px;
    height: 497px;
    background-image: url("../img/background.png");
    transform-origin: center;
}

.botones {
    position: absolute;
    bottom: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}


/*.botones {*/
/*    position: absolute;*/
/*    bottom: 10px;*/
/*    display: flex;*/
/*    flex-direction: row;*/
/*    */
/*    !*display: grid;*!*/
/*    !*grid-template-columns: repeat(5, auto);*!*/
/*    !*gap: 3px;*!*/
/*}*/


input[type=button] {
    font-family: "Zilla Slab SemiBold", serif;
    text-align: center;
    margin: 2px;
    background-color: #63492e;
    color: #dfd6be;
    border: 2px dashed #201711;
    cursor: url("../img/cursorPointer.png"), pointer;
    font-size: 10px;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

input[type=button]:hover {
    background-color: #7a5a3a;
    color: #fff3d6;
    box-shadow: 0 2px 0 #201711;
    transform: translateY(-1px);
}



