* {
    box-sizing: border-box;
    /* sito responsive da mettere sempre */
}

body,
html {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    /* Altezza minima uguale all'altezza della viewport */
    display: flex;
    flex-direction: column;
}

/* navbar*/
.navbar {
    background-color: #023047;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 1.5em;
}
.navbar-toggler {
    background-color: #ffb706;
    background: white;
}
.nav-link {
    font-weight: bold;
    font-size: 1.5em;
    color: #ffb706;
}
.nav-link:hover {
    text-decoration: underline #ffb706;
    color: white;
}

main {
    flex: 1;
    /* Il contenuto principale si espande */
}

/* PRIMA PARTE */
.sintesi {
    margin-top: 10px;
    margin-bottom: 30px;
    justify-content: center;
    display: flex;
    text-align: center;
}

/* SECONDA PARTE */
.skills-icons {
    display: flex;
    justify-content: center;
    margin: 0;
    align-items: flex-start;
}
.img-1 {
    width: 80px;
    size: 100%;
    margin: 1em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.description-icon {
    text-align: center;
    font-weight: bold;
    margin: 0;

}

footer {
    background-color: #023047;
    color: #ffb706;
    text-align: center;
    padding: 10px;
}
