/* parte alta */

* {
    margin: 0;
    padding: 0;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    color: black;
}

header {
    width: 100%;
    height: 100px;
    background-color: bisque;
    border-bottom: 3px solid grey;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */

nav {
    display: flex;
    align-items: center;
    float: left;
}

h3#brand {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin-left: 10px;
    text-shadow:
        -1px -1px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
}

img#logo {
    height: 50px;
}


/* MENU */

.nav-bar {
    align-items: center;
    float: left;
}

ul#sezione-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

li.menu {
    position: relative;
    display: inline;
    margin-right: 60px;
    float: left;
}

a.menu-link {
    text-decoration: none;

}

a.menu-link:hover {
    color: red;

}


/* IMMAGINI */


#sezione-immagini {
    position: relative;
    width: 100%;

}

#immagine_sfondo {
    position: relative;
    width: 100%;
    height: 100%;


}

#titolo {
    position: absolute;
    top: 35%;
    width: 100%;
    text-align: center;
    font-size: 6vw;
    color: bisque;
    text-shadow:
        -2px -2px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
}

#sottotitolo {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 3vw;
    color: bisque;
    text-shadow:
        -2px -2px 0 black,
        1px -1px 0 black,
        -1px 1px 0 black,
        1px 1px 0 black;
}

/* CARDS */

#section-card {
    width: 100%;
    padding: 50px 0;
    background-color: bisque;
}

#row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.card {
    width: 500px;
    border: 5px solid grey;
    padding: 20px;
    text-align: center;
    background: bisque;
}

#card-img {
    width: 100%;
}

button {
    width: 100%;
    height: 35px;
    margin-top: 10px;
    color: black;
    border-color: black;
    background: azure;
    cursor: pointer;
}

/* parte finale */

footer {

    width: 100%;
    height: 400px;
    margin-top: 200px;
    background-color: rgb(180, 227, 227);
      
}

.card-footer {
    width: 28%;
    height: 30px;
    border: 2px solid transparent;
    float: left;
    padding: 20px;
    position: relative;   


}


#logo-footer {
    width: 15%;
    margin-top: 50px;
    margin-left: 2.5%;
    position: relative;
    display: inline;
    margin-top: 3%;
    margin-left: 1%;

}

h2#nome-footer {
    width: 100%;
    position: absolute;
    display: inline;
    margin-top: 3%;
    
}

ul#card-1 {

    list-style-type: none;
    padding-top: 10px;
    position: absolute;
    left: 6.5%;
    margin-top: -8%;
    margin-left: 10%;
    font-size: 20px;
}

li.card-1 {
    line-height: 25px;

}

ul#card-2 {

    list-style-type: none;
    padding-top: 10px;
    position: absolute;
    left: 50%;
    margin-top: 4%;
    font-size: 20px;
    display: inline;

}

li.card-2 {
    line-height: 25px;

}

ul#card-3 {

    list-style-type: none;
    padding-top: 10px;
    position: absolute;
    left: 80%;
    margin-top: 4%;
    font-size: 20px;
    display: inline;


}

li.card-3 {
    line-height: 25px;

}