/* Font Face */
@font-face {
    font-family: 'Gotham-Bold';
    src: url('../font/Gotham-Bold.otf');
}

/* Variables */
:root {
    /* Colors */
    --color-black: rgba(2, 0, 1, 1);
    --color-gray: rgba(77, 77, 77, 1);
    --color-white: rgba(254, 254, 254, 1);

    /* Space */
    --space-s: 10px;
    --space-m: 20px;
    --space-ml: 30px;
    --space-l: 42px;
    --space-mxl: 60px;

    /* Font Sizes */
    --font-xxs: 4px;
    --font-xs: 10px;
    --font-s: 16px;
    --font-sm: 20px;
    --font-m: 24px;
    --font-ml: 36px;
    --font-l: 48px;
    --font-xl: 80px;
    --font-mxl: 60px;
    --font-xxl: 140px;

    /* Font Families */
    --font-gotham: 'Gotham', sans-serif;
    --font-gotham-bold: 'Gotham-Bold', sans-serif;
    --font-oswald: 'Oswald', sans-serif;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

/* body */
body {
    text-align: center;
    padding: var(--space-s);
    color: var(--color-white);
    background-image: url(images/pizze_nere_logo.png);
    background-size: contain;
    background-repeat: repeat-y;
    z-index: -2;
    overflow-x: hidden;
    width: 100%;
}

/* tipografia */
h1,
h2,
h3 {
    font-family: var(--font-gotham-bold);
}

p {
    font-family: var(--font-oswald);
}

/* Logo */
.logo-container{
    width: 100%;
    height: auto;
}
.logo {
    z-index: -1;
    position: relative;
    width: 100%;
    height: auto;
    background-size: contain;
    background-image: center center;
    
}

/* Footer y Social */
.footer {
    display: -ms-flexbox;
    display: flex;
    font-family: var(--font-oswald);
    color: var(--color-white);
    text-align: left;
    padding: 10px;
    width: 100%;
    gap: var(--space-l);
}

.derechos {
    -ms-grid-column: 2;
    grid-column: 2;
    margin: auto;
}

.derechos p {
    font-size: var(--font-xs);
    margin: auto;
}

.logosocial {
    -ms-grid-column: 3;
    grid-column: 3;
    padding-right: 80px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: auto;
}

.logosocial a img {
    display: inline-block;
    width: 30px;
    height: auto;
    border-radius: 28%;
    margin: 0;
    gap: 5px;
}

.span a img {
    background-color: rgb(255, 216, 99);
    border-radius: 50%;
}

/* A-berto */
.montserrat {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.create_by {
    font-family: "Montserrat";
    font-size: var(--font-s);
    margin: auto;
    color: var(--color-white);
}

/* ---- media query ---- */

@media screen and (max-width:768px) {
    .create_by,.derechos p,h3{
        font-size: 1.15em;
    }
    .footer{
        gap: var(--font-m);
        flex-direction: column-reverse;
    }   
 
}