@font-face {
    font-family:"fuenteminecraft";
    src: url("../estilosindex/minecraft/Minecraft.ttf");
}
body{
    background: rosybrown;
}
.contenedor{
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.card{
    font-family: "fuenteminecraft";
    margin: 20px;
    background: rgb(151, 85, 85);
    border-radius: 15px;
    box-shadow: 15px -15px 35px rgb(0, 0, 0);
    padding: 10px;
}
button{
    background: rgb(223, 166, 114);
    border: 0;
    font-family: fantasy;
    display: flex;
    align-items: center;
    justify-items: center;
    gap: 10px;
    margin-top: 10px;
}
@media screen and (max-width: 900px){
    body{
        background: rgb(180, 180, 250);
    }
    .contenedor{
        grid-template-columns: repeat(2,1fr);
    }
}
@media screen and (max-width:600px){
    body{
        background: rgb(77, 77, 112);
    }
    .contenedor{
        grid-template-columns: repeat(1,1fr);
    }
}
