<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&amp;display=swap');

*{
  margin: 0;
  padding: 0;
}
body{
        font-family: 'Roboto', sans-serif;
        color: white;
        font-size: 22px;
        
        height: 100vh;
    }


p{
        margin-bottom: 8px;
    }
    a{
        color: white;
    }
    .container{
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 20px;
    padding-right: 20px;
        padding-top: 100px;
    }
    .title{
        font-size: 30px;
        font-weight: bold;
    }
    .big-title{
        font-size: 40px;
        font-weight: bold;
        color: black;
    }
    .logo{
        display: block;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
        max-width: 400px;
        width: 100%;
        object-fit: cover;
    }
    .text-center{
        text-align: center;
    }
    .background img{
        position: absolute;
        z-index: -1;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: saturate(0.6);
        opacity: 0.9;
    }
    .flex{
        margin-top: 30px;
        margin-bottom: 30px;
        display: flex;
        justify-content: space-between;
    }
    .text-uppercase{
        text-transform: uppercase;
    }

    @media screen and (max-width: 768px){
      .logo{
        width: 50%;
      }
        .big-title{
            font-size: 30px;
        }
        .title{
            font-size: 24px;
        }
        .flex{
            flex-direction: column;
        }
    }
    @media screen and (max-width: 640px){
      
        .big-title{
            font-size: 26px;
        }
        .title{
            font-size: 22px;
        }
        
    }</pre></body></html>