/*CSS reset start*/


    :root {
/*        --text: #efebd2;*/
        --text: #f8f6e7;
        --background: #0e0c01;
        --primary: #FF9000;
        --secondary: #738cf7;
        --accent: #ef4848;
    }

    body {
        height: 100vh;
        width: 100vw;
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Arial', sans-serif;

        background-color: var(--background);

        background-image: url("Assets/gradiente.png");
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    h1, h2 {
        font-weight: bold;
        font-family: 'Clash';
    }

    h3 {
        font-family: 'Clash-regular';
        color: var(--text);
    }

    p {
        font-size: 20px;
    }

    p, a {
        font-family: 'sligoil';
        color: var(--text);
        margin: 0;
    }

    a {
        text-decoration: none;
    }

    ul, ol {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    li {
        padding: 0;
    }

    @font-face {
        font-family: 'Clash';
        src: url('Assets/Typeface/ClashGrotesk-Semibold.woff') format('woff'),
            url('Assets/Typeface/ClashGrotesk-Semibold.woff2') format('woff2');
    }

    @font-face {
        font-family: 'Clash-regular';
        src: url('Assets/Typeface/ClashGrotesk-Regular.woff') format('woff'),
            url('Assets/Typeface/ClashGrotesk-Regular.woff2') format('woff2');
    }

    @font-face {
        font-family: 'sligoil';
        src: url('Assets/Typeface/sligoil.woff') format('woff'),
            url('Assets/Typeface/sligoil.woff2') format('woff2');
    }

    @font-face {
      font-family: 'Material Icons';
      font-style: normal;
      font-weight: 400;
      src: url(https://fonts.gstatic.com/s/materialicons/v142/flUhRq6tzZclQEJ-Vdg-IuiaDsNcIhQ8tQ.woff2) format('woff2');
    }

    i.material-icons{font-size: 30px;}




.mobile {
    display: none;
}

#io-box.mobile {
    display: none;
}

    /*ALL SITE*/

    div#allsite {
        display: grid;
        grid-template-columns: 20% 60% 20%;

    }

div.element {
    height: max-content;
}

div.element.center{
/*    width: min(80vw, 1000px);*/
    justify-content: center;
    align-items: center;
    padding: auto;
    
}








/* HEADER */


#header {
    display: flex;
    justify-content: center;
    height: max-content;
    padding: 0;
    margin: 2em 0 1em 0;
    position: relative;
    align-items: center;

/*    background-color: green;*/
}



h1 {
    font-size: calc(2vw + 25px);
    color: var(--text);
    margin: auto 0;
    position: relative;
    width: max-content;
}

.logo {
    max-width: min(6em, 5vw);
    color: var(--text);
    display: block;
    top: 0;
/*    margin-left: 1em;*/
/*    margin-bottom: 1em;*/
}









/*MENU*/

#menu-div {
/*    background-color: coral;*/

    padding: 0;
    height: max-content;
    
}

#sidebar {
    height: max-content;
    width: max-content;
    float: right;

}

.menu-item {
    font-family: 'sligoil';
    font-size: min(3vw, 40px);
    color: var(--text);
    cursor: pointer;
    padding: 0 0 10px 0;
    transition: 250ms;
    text-align: right;
    text-transform: uppercase;
}


.menu-item.active a {
  text-transform: uppercase;
  color: var(--primary);
}

.menu-item a:hover {
    text-decoration: underline;
/*    text-decoration-thickness: .1em;*/
}










/*LANG SELECTOR*/

#lang {
    margin-top: 2em;
    text-align: right;
}
#lang a {
}

#lang a:hover {
    color: var(--accent);
    text-decoration: underline;
}










/*MAINBOX*/


div.MAINBOX{
    background-color: rgb(80, 79, 76, 0.6);
    text-align: center;
    
    margin: 0 2em;
    padding: 1em;
    border-radius: 1em;
    backdrop-filter: blur(10px);
    box-shadow: inset 0px 5px 20px rgba(0, 0, 0, 0.3);

    max-width: 100%;
/*    max-height: 70vh;*/

/*    overflow: scroll;*/

}



div.stuff {
    padding: 0 0;
}

img#hs {
    width: 30%;
    border-radius: 10px;
    box-shadow: 0 0 30px 5px rgba(255, 255, 255, 0.05);
}

p.bio {
    padding: 0 2em;
}



ul.contact {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin: 0 0 1em;
}

ul.contact li {
    display: flex;
    justify-content: center;
    align-items: center;
}

ul.contact li svg {
    width: 1.7em;
    height: 1.7em;
}

@media (max-width: 1240px) {
    ul.contact {
        display: block;
    }
}



a.insta {
    color: var(--primary);
    text-decoration: underline;
}





p.legal {
    font-family: Clash-regular;
    width: max-content;
    margin: 1em auto auto;
    text-align: center;
    font-size: 15px;
}









/*MOBILE*/

@media (max-width: 800px) {



    div#allsite {
        display: flex;
        flex-direction: column;
    }

    #header {
        margin: 3em 0 0;
    }

    #header h1 {
        font-size: calc(8vw);
    }

    .logo {
        max-width: calc(10vw - 10px);
        display: block;
        top: 0;
        margin-left: 1vw;
    }

    div.menu-div {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        margin:.7em 0 1em;
        width: 100%;
    }

    #sidebar {
        width: 100%;
    }

    #menu {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    .menu-item {
        font-size: calc(2vw + 1em);
        margin: 0 10px;
        padding: 10px 0;
    }


    #lang.mobile {
        margin-top: 0;
        text-align: center;
        font-size: calc(5vw);
        margin-top: 5vw;
    }




    .desktop {
        display: none;
    }

    .mobile {
        display: block;
    }

   
    p {
        font-size: 16px;
    }

    div.MAINBOX {
        max-height: calc(100vh - 12em);
        margin: 0 1em;
        padding: 1em;
    }

    div.stuff {
        padding: 0 0 0;
    }

    img#hs {
    width: 40%;
    }

    p.bio {
        padding: 0 1em;
    }


    ul.contact {
        margin: 0;
    }



    p.legal {
        margin: 1em auto 1em;
    }

    #lang.mobile {
        text-align: center;
        font-size: calc(5vw);
        margin: 0 0 5vw;
    }


}













