/* MasterCss è un framework che suddivide in classi varie caratteristiche da associare agli elementi del codice html, per un workflow più rapido e ordinato. Il progetto è diviso in sezioni: text, layout, etc. In fase di realizzazione. Mattia Macchini*/

* {
    box-sizing: border-box;
}

/* container */

.container {
    max-width: 1400px;
}




/* Text */

.italic {
    font-style: italic;
}

.medium {
    font-weight: 500;
}

.semibold {
    font-weight: 600;
}

.bold {
    font-weight: 700;
}

.extrabold {
    font-weight: 800;
}

.capitalize {
    text-transform: capitalize;
}

.uppercase {
    text-transform: uppercase;
}

.text-center {
    text-align: center;
}

.underline {
    text-decoration: underline;
}


/* Layout */

.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.shadow {
    box-shadow: 0 3px 10px #ccc;
}

.above {
    z-index: 9999;
}

.gap-xxl {
    gap: 40px;
}

.gap-xl {
    gap: 25px;
}

.gap-md {
    gap: 15px;
}

.gap-sm {
    gap:10px;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-right {
    justify-content: right;
}

.justify-left {
    justify-content: left;
}

.justify-end {
    justify-content: end;
}

.justify-start {
    justify-content: start;
}

.align-center {
    align-items: center;
}

.column {
    flex-direction: column;
}

.margin-0 {
    margin: 0 auto;
}

/* Animation */

.smooth {
    transition: all 0.4s;
}

.bigger1:hover {
    transform:scale(1.1)
}

.bigger3:hover {
    transform:scale(1.3)
}

.bigger5:hover {
    transform:scale(1.5)
}


/* Other... */

.h-inherit {
    height: inherit;

}

.no-deco {
    text-decoration: none;
}

.set-up-nav {
    list-style-type: none;
    text-decoration: none;
    display: flex;
}

.list {
    list-style-type: none;
}

.list-distance-sm {
    li {
        margin-bottom: 10px;
    }
}

.list-distance-md {
    li {
        margin-bottom: 15px;
    }
}

.list-distance-lg {
    li {
        margin-bottom: 20px;
    }
}

/* Color */

.white {
    color: white;
}

.main-color {
    color: var(--main-color);
}

html {
    overflow-y:scroll;
}