@font-face {
    font-family: 'Albert-regular';
    src: url("../font/AlbertSans-Regular-0a41c14e5736b6c73263ccc45fe0f90e.ttf") format('opentype');
}
@font-face {
    font-family: 'Albert-bold';
    src: url("../font/AlbertSans-Bold-4b1b76b92941bed714232d0e61c4d791.ttf") format('opentype');
}

a {
    color: inherit;
}

body {
    background-color: black;
    color: white;
    font-family: 'Albert-regular', 'Arial', sans-serif;
}

.text-center{
    text-align: center;
}

.home-hero {
    text-align: center;
    padding-top: 100px;
}

.home-hero__image {
    display: block;
    height: 170px;
    margin: auto;
    margin-bottom: 30px;
}

.home-hero__text {
    height: 70px;
}

.home-hero__description {
    margin-bottom: 50px;
}

.home-hero__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.home-hero__button img {
    height: 70px;
}

main {
    min-height: 80vh;
}

.privacy-links {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 20px;
}

p {
    line-height: 1.8rem;
}

.footer-texts {
    text-align: center;
    margin-top: 30px;
    color: #aaa;
}

.container {
    width: 85%;
    max-width: 1000px;
    margin: auto;
}

.policy-container {
    margin-top: 100px;
}

.hover {
    transition: opacity .3s ease-in-out;
    cursor: pointer !important;
    opacity: 1;
}

.hover:hover {
    opacity: 0.6;
}







/* SEZIONE MOBILE */
@media screen and (max-width: 1100px) {

    .home-hero {
        padding-top: 50px;
    }

    .home-hero__text {
        height: 50px;
    }

    .home-hero__description {
        padding-left: 20px;
        padding-right: 20px;
    }

    .home-hero__image {
        height: 120px;
    }

    .privacy-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .home-hero__buttons {
        flex-direction: column;
        gap: 15px;
    }

    .home-hero__buttons img {
        width: 230px;
    }

    h1 {
        font-size: 1.6rem;
    }

}