@font-face {
    font-family: "Steelfish";
    font-weight: bold;
    src: url("/fonts/steelfish_bd.otf") format("opentype");
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
}

#presentazione {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#presentazione #background,
#presentazione #foreground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

#presentazione #foreground {
    z-index: 3;
}

#presentazione h1 {
    z-index: 2;
    letter-spacing: 80px;
    font-size: 12em;
    font-family: "Steelfish";
    font-weight: bold;
}

#presentazione #background {
    z-index: 1;
}

body {
    overflow-x: hidden;
}

ul {
    text-align: center;
}

.listino-offerte {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
}

.offerte-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    padding-bottom: 20px;
    box-shadow: 0px 0px 2px #888888;
    transition: all 0.4s ease 0s;
}

.offerte-item:hover {
    transform: scale(1.05);
}

.offerte-item img{
    width: 40vw;
}

.offerte-item h2 {
    font-family: "Tangerine", "Arima Madurai", sans-serif;
    font-size: 6em;
    font-weight: 500;
    color: #b19d86;
    margin-top: 15px;
    text-align: center;
}

.offerte-item .offerta-sottotitolo p,
.offerte-item .offerta-sottotitolo {
    width: 80%;
    text-align: right;
    font-weight: 900;
    color: #b19d86;
    font-size: 1.3em;
}

ul {
    margin-bottom: 20px;
}

/*---------------------*/

#un-anno-con-me {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    transition: all 0.4s ease 0s;
}

#un-anno-con-me:hover {
    transform: scale(1.05);
}

#un-anno-con-me h2{
    font-family: "Tangerine", "Arima Madurai", sans-serif;
    font-size: 6em;
    font-weight: 500;
    margin-top: 60px;
    text-align: center;
    color: #b19d86;
}

#un-anno-con-me img {
    width: 80%;
}

#un-anno-con-me div {
    width: 80%;
    background-color: #fff;
    box-shadow: 0px 0px 2px #888888;
    padding: 40px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media screen and (max-width: 800px) {

    .listino-offerte {
        flex-direction: column;
        align-items: center;
    }

    .offerte-item{
        margin: 2vw;
    }

    .offerte-item img{
        width: 90vw;
    }

    #un-anno-con-me h2 {
        font-size: 4em;
    }

    .offerte-item h2 {
        font-size: 3em;
    }

    .offerte-item .offerta-sottotitolo p,
    .offerte-item .offerta-sottotitolo {
        width: 70%;
        font-size: 1em;
    }

    #un-anno-con-me div,
    #un-anno-con-me img {
        width: 90%;
    }

}