/*-----------------------------------------------------------------*\
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
 |S| GENERAL SETTINGS
 ///////////////////////////////////////////////////////////////////
 ///////////////////////////////////////////////////////////////////
\*-----------------------------------------------------------------*/

/* GENERAL SETTINGS
////////////////////////////////////////////////////
///////////// || SETTINGS / CSS RESET / CSS NORMALIZE
////////////////////////////////////////////////////
*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100svw; /* or 100vw */
    line-height: 1.25; /* Correct the line height in all browsers. */
    /*-webkit-text-size-adjust: 100%;*/ /* Prevent adjustments of font size after orientation changes in iOS. */
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    overflow-x: hidden;
    /* overflow-x: clip; */
}

body {
    font-size: 100%;
    font-family: Font1;
    background-color: var(--white-50);
    color: var(--dark-1-50);
}

div {
    display: block;
}

img {
    border-style: none;
    border: 0;
}

a {
    text-decoration: none;
}



