@font-face {
    font-family: 'ElegantIcons';
    src: url('fonts/ElegantIcons.eot');
    src: url('fonts/ElegantIcons.eot?#iefix') format('embedded-opentype'),
        url('fonts/ElegantIcons.woff') format('woff'),
        url('fonts/ElegantIcons.ttf') format('truetype'),
        url('fonts/ElegantIcons.svg#ElegantIcons') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Stardust-Adventure.ttf";
    src: url("fonts/Stardust-Adventure.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

/* ******************************************** */
/* Estilos para teléfonos pequeños (portrait) */
/* ******************************************** */
@media (width < 320px) {
    img {
        width: 5em;
        font-size: 13px;
    }

    .logo {
        grid-area: log-area;
        text-align: right;
    }

    header {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        grid-template-areas: 'log-area dir-area' 'exp-area exp-area';
    }

    main {
        display: grid;
        grid-template-columns: auto auto auto;
        grid-template-rows: auto auto auto auto auto auto auto;
        grid-template-areas: '. experiencia .' '. horario .' '. agenda .' '. precios .' '. instagram .' '. lazartigue .' '. telefono .';
    }

    .Telefono {
        font-family: 'Abel', sans-serif;
        grid-area: telefono;
        font-size: 9px;
        text-align: center;
        align-self: center;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        width: 90vw;
    }

    .Precios {
        grid-area: precios;
        font-family: 'Akshar', sans-serif;
        font-size: 10px;
        text-align: center;
        line-height: 12px;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
        width: 80vw;
    }

    .agenda {
        font-family: 'Akshar', sans-serif;
        font-size: 10px;
        grid-area: agenda;
        text-align: center;
        line-height: 12px;
        width: 80vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .lazartigue {
        font-family: 'Aboreto', cursive;
        grid-area: lazartigue;
        text-align: center;
        font-weight: 700;
        color: #2b1e30;
        font-size: 9px;
        width: 80vw;
        align-self: center;
        justify-self: center;
    }

    .direccion {
        text-align: center;
        color: #2b1e30;
        font-family: 'Aboreto', cursive;
        font-style: normal;
        font-size: 8px;
        line-height: 5px;
        grid-area: dir-area;
        letter-spacing: -0.5px;
        font-weight: 700;
        align-self: end;
        width: 15em;
    }

    .experiencia {
        font-family: 'Amaranth', sans-serif;
        grid-area: exp-area;
        text-align: center;
        color: #2b1e30;
        font-size: 11px;
        line-height: 0px;
        border-bottom: 2px ridge #bdb5b5;
        font-style: italic;
        border-top: 2px ridge #bdb5b5;
        align-self: center;
        justify-self: center;
        width: 85vw;
    }

    .invierno {
        margin-bottom: 22px;
        margin-top: 8px;
    }

    .instagram img {
        width: 1.5em;
    }

    .horario {
        font-family: 'Abel', sans-serif;
        font-weight: 700;
        border-radius: 16px;
        grid-area: horario;
        font-size: 11px;
        line-height: 2px;
        text-align: center;
        border: 2px solid #2b1e30;
        width: 80vw;
        margin-top: 8px;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .horario p {
        color: #2b1e30;
    }

    p.invierno {
        font-family: 'Abel', sans-serif;
        color: #000000;
    }

    .Precios a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 10px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }

    .agenda a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 10px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }

    .instagram {
        grid-area: instagram;
        text-align: center;
        height: 65px;
        place-items: end center;
        display: grid;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
        width: 80vw;
    }
}

/* ******************************************** */
/* Estilos para teléfonos grandes (landscape) */
/* ******************************************** */
@media (width >= 320px) and (width < 480px) {
    .logo {
        grid-area: log-area;
        text-align: right;
    }

    header {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        grid-template-areas: 'log-area dir-area' 'exp-area exp-area';
        text-align: left;
        column-gap: 8px;
    }

    main {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        grid-template-rows: auto auto auto auto auto auto auto;
        grid-template-areas: '. experiencia .' '. horario .' '. agenda .' '. precios .' '. instagram .' '. lazartigue .' '. telefono .';
    }

    .experiencia {
        font-family: 'Amaranth', sans-serif;
        grid-area: exp-area;
        text-align: center;
        color: #2b1e30;
        font-size: 15px;
        line-height: 0px;
        border-bottom: 2px ridge #bdb5b5;
        font-style: italic;
        border-top: 2px ridge #bdb5b5;
        width: 85vw;
        align-self: center;
        justify-self: center;
    }

    .Telefono {
        font-family: 'Abel', sans-serif;
        grid-area: telefono;
        font-size: 12px;
        text-align: center;
        width: 85vw;
        align-self: center;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
    }

    .Precios {
        grid-area: precios;
        font-family: 'Akshar', sans-serif;
        font-size: 16px;
        text-align: center;
        line-height: 14px;
        padding-top: 1em;
        color: #343434;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
        width: 70vw;
    }

    .agenda {
        font-family: 'Akshar', sans-serif;
        font-size: 16px;
        grid-area: agenda;
        text-align: center;
        line-height: 14px;
        align-self: end;
        color: #343434;
        width: 70vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .lazartigue {
        font-family: 'Aboreto', cursive;
        grid-area: lazartigue;
        text-align: center;
        font-weight: 700;
        color: #2b1e30;
        font-size: 10px;
        width: 70vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .direccion {
        text-align: center;
        color: #2b1e30;
        font-family: 'Aboreto', cursive;
        font-style: normal;
        font-size: 11px;
        line-height: 5px;
        grid-area: dir-area;
        letter-spacing: -0.5px;
        font-weight: 700;
        align-self: end;
        width: 15em;
    }

    .horario {
        font-family: 'Abel', sans-serif;
        font-weight: 700;
        border-radius: 16px;
        grid-area: horario;
        font-size: 12px;
        line-height: 2px;
        text-align: center;
        border: 2px solid #2b1e30;
        margin-top: 8px;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
        width: 70vw;
    }

    .invierno {
        margin-bottom: 22px;
        margin-top: 8px;
    }

    .instagram {
        grid-area: instagram;
        text-align: center;
        padding-top: 1.8em;
        width: 70vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .instagram img {
        width: 40px;
    }

    .horario p {
        color: #2b1e30;
    }

    p.invierno {
        font-family: 'Abel', sans-serif;
        color: #000000;
    }

    img {
        border-top-color: #2b1e30;
        width: 6em;
        font-size: 15px;
    }

    .Precios a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 12px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }

    .agenda a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 12px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }
}

/* ********************************* */
/* Estilos para tablets (portrait) */
/* ********************************* */
@media (width >= 480px) and (width < 768px) {
    .logo {
        grid-area: 1 / 1 / 2 / 2;
        text-align: right;
    }

    header {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        grid-template-areas: 'log-area dir-area' 'exp-area exp-area';
        column-gap: 10px;
    }

    main {
        display: grid;
        grid-template-columns: auto auto auto;
        grid-template-rows: auto auto auto auto auto auto auto;
        grid-template-areas: '. experiencia .' '. horario .' '. agenda .' '. precios .' '. instagram .' '. lazartigue .' '. telefono .';
    }

    .experiencia {
        font-family: 'Amaranth', sans-serif;
        grid-area: exp-area;
        text-align: center;
        color: #2b1e30;
        font-size: 17px;
        line-height: 10px;
        border-bottom: 2px ridge #bdb5b5;
        font-style: italic;
        border-top: 2px ridge #bdb5b5;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
        width: 80vw;
    }

    .Telefono {
        font-family: 'Abel', sans-serif;
        grid-area: telefono;
        font-size: 15px;
        text-align: center;
        width: 25em;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .Precios {
        grid-area: precios;
        font-family: 'Akshar', sans-serif;
        font-size: 17px;
        text-align: center;
        line-height: 18px;
        margin-top: 10px;
        margin-bottom: 20px;
        color: #343434;
        width: 60vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .agenda {
        font-family: 'Akshar', sans-serif;
        grid-area: agenda;
        text-align: center;
        font-size: 17px;
        line-height: 18px;
        margin-top: 10px;
        margin-bottom: 20px;
        width: 60vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .lazartigue {
        font-family: 'Aboreto', cursive;
        grid-area: lazartigue;
        text-align: center;
        font-weight: 700;
        color: #2b1e30;
        font-size: 16px;
    }

    .direccion {
        text-align: center;
        color: #2b1e30;
        font-family: 'Aboreto', cursive;
        font-style: normal;
        font-size: 16px;
        line-height: 5px;
        grid-area: 1 / 2 / 2 / 3;
        font-weight: 700;
        letter-spacing: -0.5px;
        align-self: end;
        width: 15em;
    }

    .horario {
        font-family: 'Abel', sans-serif;
        font-weight: 700;
        box-sizing: content-box;
        border-radius: 16px;
        grid-area: horario;
        font-size: 16px;
        line-height: 2px;
        text-align: center;
        border: 2px solid #2b1e30;
        background-repeat: repeat-y;
        margin-top: 8px;
        width: 60vw;
        justify-self: center;
        align-self: center;
    }

    .logo img {
        font-size: 12px;
        width: 10em;
    }

    .invierno {
        margin-bottom: 22px;
        margin-top: 8px;
    }

    .instagram {
        grid-area: instagram;
        text-align: center;
        margin-top: 40px;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .instagram img {
        width: 40px;
        text-align: center;
    }

    .horario p {
        color: #2b1e30;
    }

    p.invierno {
        font-family: 'Abel', sans-serif;
        color: #000000;
    }

    .Precios a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 17px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }

    .agenda a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 17px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }
}

/* ******************************************************* */
/* Estilos para tablets y pantallas pequeñas (landscape) */
/* ******************************************************* */
@media (width >= 768px) and (width < 1024px) {
    .logo {
        grid-area: log-area;
        text-align: right;
    }

    .logo img {
        width: 9em;
        font-size: 15px;
    }

    header {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        grid-template-areas: 'log-area dir-area' 'exp-area exp-area';
        gap: 10px;
    }

    main {
        display: grid;
        grid-template-columns: auto auto auto;
        grid-template-rows: auto auto auto auto auto auto auto;
        grid-template-areas: '. experiencia .' '. horario .' '. agenda .' '. precios .' '. instagram .' '. lazartigue .' '. telefono .';
    }

    .experiencia {
        font-family: 'Amaranth', sans-serif;
        grid-area: exp-area;
        text-align: center;
        color: #2b1e30;
        font-size: 24px;
        border-bottom: 2px ridge #bdb5b5;
        font-style: italic;
        border-top: 2px ridge #bdb5b5;
        align-self: center;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        width: 65vw;
        line-height: 0px;
    }

    .Telefono {
        font-family: 'Abel', sans-serif;
        grid-area: telefono;
        font-size: 20px;
        text-align: center;
        width: 65vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .Precios {
        grid-area: precios;
        font-family: 'Akshar', sans-serif;
        font-size: 23px;
        text-align: center;
        line-height: 17px;
        margin-top: -4px;
        padding-top: 20px;
        padding-bottom: 40px;
        color: #2b1e30;
        width: 65vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .agenda {
        font-family: 'Akshar', sans-serif;
        font-size: 25px;
        grid-area: agenda;
        text-align: center;
        line-height: 17px;
        margin-top: 12px;
        margin-bottom: 33px;
        color: #2b1e30;
        width: 55vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .lazartigue {
        font-family: 'Aboreto', cursive;
        grid-area: lazartigue;
        text-align: center;
        font-weight: 700;
        color: #2b1e30;
        font-size: 16px;
        width: 25em;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .direccion {
        text-align: center;
        color: #2b1e30;
        font-family: 'Aboreto', cursive;
        font-style: normal;
        font-size: 19px;
        line-height: 2px;
        grid-area: dir-area;
        letter-spacing: 2px;
        align-self: end;
        width: 20em;
        font-weight: 700;
    }

    .horario {
        font-family: 'Abel', sans-serif;
        font-weight: 700;
        border-radius: 16px;
        grid-area: horario;
        font-size: 23px;
        line-height: 2px;
        text-align: center;
        border: 2px solid #2b1e30;
        background-repeat: repeat-y;
        margin-top: 14px;
        align-self: center;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        padding-top: 10px;
        width: 55vw;
    }

    .invierno {
        margin-bottom: 36px;
        margin-top: 6px;
    }

    .instagram {
        grid-area: instagram;
        text-align: center;
        height: 5em;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        width: 60vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .instagram img {
        width: 50px;
    }

    .horario p {
        color: #2b1e30;
    }

    p.invierno {
        font-family: 'Abel', sans-serif;
        color: #000000;
    }

    .Precios a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 17px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }

    .agenda a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 17px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }
}

/* *********************************************** */
/* Estilos para pantallas de escritorio medianas */
/* *********************************************** */
@media (width >= 1024px) and (width < 1200px) {
    .logo {
        grid-area: log-area;
        float: right;
        text-align: right;
    }

    .logo img {
        font-size: 15px;
        width: 10em;
    }

    header {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        grid-template-areas: 'log-area dir-area' 'exp-area exp-area';
        row-gap: 0.5em;
    }

    main {
        display: grid;
        grid-template-columns: auto auto auto;
        grid-template-rows: auto auto auto auto auto auto auto;
        grid-template-areas: '. experiencia .' '. horario .' '. agenda .' '. precios .' '. instagram .' '. lazartigue .' '. telefono .';
    }

    .experiencia {
        font-family: 'Amaranth', sans-serif;
        grid-area: exp-area;
        text-align: center;
        color: #2b1e30;
        font-size: 28px;
        line-height: 2px;
        border-bottom: 2px ridge #bdb5b5;
        font-style: italic;
        border-top: 2px ridge #bdb5b5;
        width: 55vw;
        align-self: center;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
    }

    .Telefono {
        font-family: 'Abel', sans-serif;
        grid-area: telefono;
        font-size: 20px;
        text-align: center;
        width: 50vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .Precios {
        grid-area: precios;
        font-family: 'Akshar', sans-serif;
        font-size: 23px;
        text-align: center;
        line-height: 18px;
        padding-top: 40px;
        padding-bottom: 20px;
        color: #343434;
        width: 45vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .agenda {
        font-family: 'Akshar', sans-serif;
        font-size: 23px;
        grid-area: agenda;
        text-align: center;
        line-height: 18px;
        padding-bottom: 20px;
        padding-top: 40px;
        width: 45vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .lazartigue {
        font-family: 'Aboreto', cursive;
        grid-area: lazartigue;
        text-align: center;
        font-weight: 700;
        color: #2b1e30;
        font-size: 16px;
        width: 25em;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .direccion {
        text-align: center;
        color: #2b1e30;
        font-family: 'Aboreto', cursive;
        font-style: normal;
        font-size: 20px;
        line-height: 5px;
        grid-area: dir-area;
        letter-spacing: 2px;
        font-weight: 700;
        float: left;
        align-self: end;
        width: 20em;
    }

    .horario {
        font-family: 'Abel', sans-serif;
        font-weight: 700;
        box-sizing: content-box;
        border-radius: 16px;
        grid-area: horario;
        font-size: 23px;
        line-height: 2px;
        text-align: center;
        border: 2px solid #2b1e30;
        background-repeat: repeat-y;
        padding-top: 20px;
        margin-top: 18px;
        align-self: center;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        width: 45vw;
    }

    .invierno {
        margin-bottom: 36px;
        margin-top: 6px;
    }

    .instagram {
        grid-area: instagram;
        text-align: center;
        padding-top: 40px;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .instagram img {
        width: 50px;
    }

    .horario p {
        color: #2b1e30;
    }

    p.invierno {
        font-family: 'Abel', sans-serif;
        color: #000000;
    }

    .Precios a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 17px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }

    .agenda a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 17px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }
}

/* Estilos para pantallas de escritorio grandes */
@media (min-width: 1200px) and (max-width: 1599px) {
    .logo {
        grid-area: log-area;
        text-align: right;
    }

    .logo img {
        width: 10em;
        font-size: 15px;
    }

    header {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        grid-template-areas: 'log-area div-area' 'exp-area exp-area';
        row-gap: .5em;
    }

    main {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto auto auto auto auto auto;
        grid-template-areas: '. experiencia .' '. horario .' '. agenda .' '. precios .' '. instagram .' '. lazartigue .' '. telefono .';
    }

    .experiencia {
        font-family: 'Amaranth', sans-serif;
        grid-area: exp-area;
        text-align: center;
        color: #2b1e30;
        font-size: 24px;
        line-height: 0px;
        border-bottom: 2px ridge #bdb5b5;
        font-style: italic;
        border-top: 2px ridge #bdb5b5;
        align-self: center;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        width: 45vw;
    }

    .Telefono {
        font-family: 'Abel', sans-serif;
        grid-area: telefono;
        font-size: 20px;
        text-align: center;
        align-self: center;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        width: 40vw;
    }

    .Precios {
        grid-area: precios;
        font-family: 'Akshar', sans-serif;
        font-size: 22px;
        text-align: center;
        line-height: 7px;
        margin-top: 6px;
        margin-bottom: 71px;
        color: #2b1e30;
        width: 40vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .agenda {
        font-family: 'Akshar', sans-serif;
        font-size: 22px;
        grid-area: agenda;
        text-align: center;
        line-height: 7px;
        margin-top: 20px;
        margin-bottom: 40px;
        color: #2b1e30;
        width: 40vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .lazartigue {
        font-family: 'Aboreto', cursive;
        grid-area: lazartigue;
        text-align: center;
        font-weight: 700;
        color: #2b1e30;
        font-size: 16px;
        width: 40vw;
        align-self: center;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
    }

    .direccion {
        text-align: center;
        color: #2b1e30;
        font-family: 'Aboreto', cursive;
        font-style: normal;
        font-size: 20px;
        line-height: 5px;
        grid-area: div-area;
        letter-spacing: 2px;
        align-self: end;
        font-weight: 700;
        width: 20em;
    }

    .horario {
        font-family: 'Abel', sans-serif;
        font-weight: 700;
        border-radius: 16px;
        grid-area: horario;
        font-size: 22px;
        line-height: 2px;
        text-align: center;
        border: 2px solid #2b1e30;
        padding-top: 32px;
        padding-bottom: 17px;
        margin-top: 28px;
        align-self: center;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        width: 18em;
    }

    .invierno {
        margin-bottom: 36px;
        margin-top: 6px;
    }

    .instagram {
        grid-area: instagram;
        text-align: center;
        width: 40vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        height: 7vh;
        display: flex;
        align-items: end;
        justify-content: center;
    }

    .instagram img {
        width: 50px;
    }

    .horario p {
        color: #2b1e30;
    }

    p.invierno {
        font-family: 'Abel', sans-serif;
        color: #000000;
    }

    .Precios a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 17px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }

    .agenda a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 17px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }
}

/* *************************************************** */
/* Estilos generales para pantallas mayores a 1600px */
/* *************************************************** */
@media (width > 1600px) {
    .logo {
        grid-area: log-area;
        text-align: right;
    }

    header {
        display: grid;
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        grid-template-areas: 'log-area dir-area' 'exp-area exp-area';
        row-gap: .5em;
    }

    main {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-rows: auto auto auto auto auto auto auto;
        grid-template-areas: '. experiencia .' '. horario .' '. agenda .' '. precios .' '. instagram .' '. lazartigue .' '. telefono .';
    }

    .experiencia {
        font-family: 'Amaranth', sans-serif;
        grid-area: exp-area;
        text-align: center;
        color: #2b1e30;
        font-size: 29px;
        line-height: 0px;
        border-bottom: 2px ridge #bdb5b5;
        font-style: italic;
        border-top: 2px ridge #bdb5b5;
        align-self: center;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        width: 30vw;
        overflow: auto;
    }

    .Telefono {
        font-family: 'Abel', sans-serif;
        grid-area: telefono;
        font-size: 20px;
        text-align: center;
        width: 30vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .Precios {
        grid-area: precios;
        font-family: 'Akshar', sans-serif;
        font-size: 30px;
        text-align: center;
        line-height: 1px;
        color: #2b1e30;
        width: 25vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
        height: 12vh;
    }

    .agenda {
        font-family: 'Akshar', sans-serif;
        font-size: 30px;
        grid-area: agenda;
        text-align: center;
        line-height: 2px;
        margin-top: 4px;
        color: #2b1e30;
        width: 25vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
        height: 12vh;
    }

    .lazartigue {
        font-family: 'Aboreto', cursive;
        grid-area: lazartigue;
        text-align: center;
        font-weight: 700;
        color: #2b1e30;
        font-size: 16px;
        width: 25vw;
        align-self: center;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
    }

    .direccion {
        text-align: center;
        color: #2b1e30;
        font-family: 'Aboreto', cursive;
        font-style: normal;
        font-size: 20px;
        line-height: 5px;
        grid-area: dir-area;
        letter-spacing: 2px;
        font-weight: 700;
        align-self: end;
        width: 20em;
    }

    .horario {
        font-family: 'Abel', sans-serif;
        font-weight: 700;
        box-sizing: content-box;
        border-radius: 16px;
        grid-area: horario;
        font-size: 26px;
        line-height: 2px;
        text-align: center;
        border: 2px solid #2b1e30;
        width: 25vw;
        align-self: center;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        margin-top: 11px;
    }

    .invierno {
        margin-bottom: 36px;
        margin-top: 6px;
    }

    img {
        border-top-color: #2b1e30;
        width: 10em;
        margin-top: 16px;
        font-size: 15px;
    }

    .instagram {
        grid-area: instagram;
        text-align: center;
        padding-top: 45px;
        width: 25vw;

        /* Centrar verticalmente dentro del grid */
        justify-self: center;
        align-self: center;
    }

    .instagram img {
        width: 50px;
    }

    .horario p {
        color: #2b1e30;
    }

    p.invierno {
        font-family: 'Abel', sans-serif;
        color: #000000;
        margin-top: 28px;
    }

    .Precios a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 17px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }

    .agenda a {
        text-decoration: none;
        color: #b3e111;
        font-family: 'Dosis', sans-serif;
        text-transform: uppercase;
        font-size: 17px;
        font-style: normal;
        letter-spacing: 3px;
        border-radius: 23px;
        background-color: #2b1e30;
        border-top-style: solid;
        border-top-color: #2b1e30;
        border-left-style: solid;
        border-left-color: #2b1e30;
        border-right-style: solid;
        border-right-color: #2b1e30;
        border-bottom-style: solid;
        border-bottom-color: #2b1e30;
    }
}







