* {
    box-sizing: border-box;
}

body {
    background-image: url("imagenes/fondo-carta.png");
    background-size: cover;
    background-position: center center;
    margin: 0;
    padding: 20px;
    font-family: 'Arial', sans-serif;
    color: #fff;
}

h1 {
    text-align: center;
    font-size: 40px;
    color: #f2c94c;
    font-family: 'CopperplateCustom', sans-serif;
    margin-bottom: 30px;
}

.menu {
    display: grid;
    gap: 20px;
}

.menu-item {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    font-family: 'CopperplateCustom', sans-serif;
    font-size: 22px;
    color: #f2c94c;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.6);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.menu-item:hover {
    transform: scale(1.03);
    background-color: #2a2a2a;
}

@media (min-width: 600px) {
    .menu {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .menu {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@font-face {
    font-family: 'CopperplateCustom';
    src: url('fuentes/OPTICopperplate-Light.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
