* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Anton", sans-serif;
    letter-spacing: 2px; /* Más espacio entre letras */
}

body {
    background-color: #cfcfcf;
    color: black;
    text-align: center;
}

/* HEADER con línea roja abajo y logo encima de la línea */
header {
    position: relative;
    background-color: black;
    height: 50px;
    border-bottom: 5px solid red;
}

/* Imagen del carro encima de la línea roja */
.logo {
    position: absolute;
    bottom: -25px; /* Se superpone sobre la línea roja */
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 50px;
}

/* Texto MENÚ PRINCIPAL debajo del logo */
h1 {
    font-size: 36px;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Menú */
.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin: 0 auto 50px;
    max-width: 1000px;
}

/* Botones */
.menu-item {
    background-color: white;
    border: 3px solid red;
    border-radius: 15px;
    padding: 40px 30px;
    width: 200px; /* hacer mas ancho */
    height: 120px; /* hacer mas alto */
    font-size: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: black;
    transition: transform 0.2s;
}

.menu-item:hover {
    transform: scale(1.05);
    background-color: #f8f8f8;
}
