@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;
    margin-bottom: 25vh;
    letter-spacing: 80px;
    font-size: 12em;
    font-family: "Steelfish";
    font-weight: bold;
    color: #fff;
}

#presentazione #background {
    z-index: 1;
}