*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/RobotoFlex-VariableFont_GRAD\,XOPQ\,XTRA\,YOPQ\,YTAS\,YTDE\,YTFI\,YTLC\,YTUC\,opsz\,slnt\,wdth\,wght.ttf') 
    format('truetype');
}

@font-face {
    font-family: 'RocknRollOne';
    src: url('../fonts/RocknRollOne-Regular.ttf') format('truetype');
}

body{
    font-family: 'Roboto', sans-serif;
    display: flex;
    justify-content: center;
    height: 100vh;
    width: 100%;
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background-image: url('../images/banner.png');
    background-size: 150% 100%;
}

.img--logo-container{
    display: flex;
    justify-content: center;
    width: 100%;
}

.img--logo-container img{
    width: 200px;
}

.text--container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    color: #fff;
}

.text--container h1{
    font-size: 1.7rem;
    margin: 20px 0;
    text-align: center;
    font-family: 'RocknRollOne', sans-serif;
}

.text--container p{
    font-weight: 500;
    text-align: center;
}

.info--container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #f58634;
    text-align: center;
    margin-top: 100px;
}

.info--container h2{
    font-size: 3rem;
    font-family: 'RocknRollOne', sans-serif;
}

.info--container p{
    font-size: 1.3rem;
    max-width: 600px;
    margin-top: 10px;
}

.social--media-container{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 40px;
}

.social--media-container a{
    background: #f58634;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;

}

.social--media-container img{
    width: 30px;
}

@media screen and (max-width: 768px){
    .info--container{
        margin: 0;
    }

    .text--container{
        margin-bottom: 100px;
    }
    
    .img--logo-container{
        margin-top: 180px;
    }

    .info--container p{
        width: 90%;
    }

    .social--media-container{
        margin-bottom: 50px;
    }

}

