body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
    color: white;
}

#site {
    background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%), url("../img/background.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    width: 100%;
}

#site img {
    width: 50%;
}

#site h1 {
    font-size: 72px;
    font-weight: bold;
}

#site p, #site a {
    font-size: 24px;
}

#site p {
    font-weight: 500;
}

#site a {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
}

#site a span {
    display: inline-block;
    width: 35px;
}

#site a span i {
    font-size: 24px;
}

#site ul li:not(:last-child) {
    margin-bottom: 10px;
}

@media (max-width: 1200px) {
    #site h1 {
        font-size: 56px;
    }
    #site p, #site a {
        font-size: 21px;
    }
}

@media (max-width: 768px) {
    #site h1 {
        font-size: 40px;
    }
    #site p, #site a {
        font-size: 18px;
    }
}
