@import url("https://gsnetitalia.net/assets/css/gsnet.css");

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    width: 0px;
}

body {
    width: 100vw;
    height: 100vh;
    background:  linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("../img/background.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-family: "Raleway", sans-serif;
}

.container {
    margin: 0 10vw;  
}

h1 {
    color: var(--accent);
    font-size: 62px;
}

h3 {
    color: white;
    font-size: 32px;
    font-weight: 600;
}

@media screen and (max-width: 1200px) {
    h1 {
        font-size: 42px;
    }

    h3 {
        font-size: 26px;
    }
}

@media screen and (max-width: 600px) {
    .container {
        margin: 0 4vw;  
    }
    
    h1 {
        font-size: 32px;
    }

    h3 {
        font-size: 18px;
    }
}