@font-face {
    font-family: 'GeistMono'; /* Define the font-family name once */
    src: url("../fonts/GeistMono-VariableFont_wght.ttf");
}

* {
    font-family: 'GeistMono', sans-serif; /* Use the defined font-family name */
    color: #fff;
}
a{
    text-decoration: none;
}

p, .p{
    text-transform: uppercase;
    font-size: 22px;
    color: #fff;
}

.multi-bg {
    width: 100%;
    background: url("../img/background.jpg") center / cover no-repeat;
    position: relative;
}
/* seconda immagine */
.multi-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/background_sx.png") left center / contain no-repeat;
    pointer-events: none;
}

/* terza immagine */
.multi-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/background_dx.png") right  center / contain no-repeat;
    pointer-events: none;
}

.link{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.link a{
    font-size: 32px;
    line-height: 1;
    text-decoration: none;
}

.link img{
    height: 32px;
    width: auto;
}
.custom-button-container{
    display: flex;
    justify-content: center;
    column-gap: 25px;
    row-gap: 10px;
}
.custom-button{
    display: block;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-size: 24px;
    width: 250px;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 8px;
}

@media screen and (max-width: 1440px) {
    /* seconda immagine */
    .multi-bg::before {
        background-position: -10%  center;
    }

    /* terza immagine */
    .multi-bg::after {
        background-position: 110%  center;
    }
}

@media screen and (max-width: 1200px) {
    /* seconda immagine */
    .multi-bg::before {
        background-position: -20%  center;
    }

    /* terza immagine */
    .multi-bg::after {
        background-position: 120%  center;
    }
}

@media screen and (max-width: 992px) {
    .multi-bg::before,
    .multi-bg::after
    {
      display: none;
    }

    p, .p{
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .custom-button-container {
        flex-direction: column;
    }
}