:root {
    overflow-x: hidden;
}

@font-face {
    font-family: 'CustomFont';
    src:  
         url('../assets/CarroisGothic-Regular.ttf') format('truetype'); 
}  

html, body {
    margin: 0;
    font-family: "CustomFont", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

a {
    text-decoration: none;
    font-weight: 800;
    color: rgb(120,188,60);
}

main {
    margin: 0;
    padding: 0;
    height: 100vh;
    width: 100vw;
}

.background {
    padding: 32px;
    margin: 0;
    width: 100%;
    height: 100%;
    max-height: calc(100vh - 260px);
    background-image: url(../assets/background.png);
    background-size: cover;
    background-position: center;
  
}


.background p {
    max-width: calc(100vw - 64px);
    margin: 0;

    font-size: 3rem;
    color: #fff;
    font-weight: 700;

}

.description {
    padding: 16px;
    padding-right: 25vw;
    font-size: 1.6rem;
    color: rgb(120,188,60);
}



.logo {
    right: 32px;
    bottom: 32px;
    position: absolute;
    width: 20vw;
} 


@media screen and (max-width: 768px) {

    .description {
        padding: 16px;

    }

    .background {
        max-height: 400px;
    }

    .logo {
        position: static;
        width: 100%;
    }
}
    
