/* -------------------------------------------------------------------------------- */
/* ! Base */
/* -------------------------------------------------------------------------------- */

/* Reset */
* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    font-family: 'Work Sans', sans-serif;
    color: var(--light);
    padding-top: 100px;
    display: flex;
    justify-content: center;
    grid-column: 1/9;
}

a:hover {
    font-weight: 600;
}

li {
    list-style-type: none;
}

.grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
    padding: 10px 20px;
}

:root {
    --dark: #252121;
    --accent: #CCF234;
    --light: #ffff;
}

body {
    background: linear-gradient(135deg, #CCF234, #252121);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
}

.grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    width: 100%;
}

.allestimento {
    grid-column: span 8;
    text-align: center;
}

.fa-gears {
    font-size: 5rem;
    color: var(--light);
}

h1 {
    color: var(--light);
    font-size: 40px;
    margin: 1rem 0;
    font-weight: 400;
}

p {
    color: var(--light);
    font-size: 15px;
    font-weight: 300;
}