@font-face {
    font-family: "Grotesque MT";
    src: url("fonts/Grotesque\ MT\ Regular.otf") format("opentype");
}

@font-face {
    font-family: "FS Blaje";
    src: url("fonts/fsblake.woff2") format("woff2");
}

body {
    margin: 0;
    font-family: "Grotesque MT", Arial, sans-serif;
    overflow-x: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "FS Blaje", Arial, sans-serif;
}

header {
    padding: 21px 16px;
    border-bottom: 1px solid black;
    position: sticky;
    top: 0;
    z-index: 100;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: white;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

#logoweb {
    height: 50px;
}

.linksection {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    p:hover {
        color: red;
        cursor: pointer;
    }
}

.carrusel {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: start;
    padding: 40px;
    gap: 40px;
    width: calc(100% - 2 * 40px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

#comida {
    width: calc(100% - 2 * 40px);
    height: auto;
}
.wid {
    width: calc(100% - 2 * 40px);
    height: auto;
    padding: 40px;
}

.maja {
    padding-top: 50px;
    height: 30px;
    width: auto;
}

.componente {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: start;
    margin-bottom: 20px;
    margin-top: 30px;
    gap: 20px;
}

.l {
    height: 160px;
    width: auto;
    aspect-ratio: 1/1;
    background-color: red;
    background-size: cover;
    background-position: center;
    margin: 0;
    padding: 0;
}

.r {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

button {
    background-color: #ff0000;
    border: none;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    cursor: pointer;
}

footer {
    background-color: black;
    color: white;
    padding: 20px;
    padding-top: 100px;
    text-align: left;
}

@media (min-width: 768px) {
    .wid {
        width: 800px;
    }
}
