html {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    color: #ffffff;
    }
    
    body {
        margin: 0;
        width: 100%;
        background-color: #11171d;
    }
    
    header {
        width: 100%;
        height: 180px;
        background: linear-gradient(180deg,rgba(9, 15, 20), rgba(9, 15, 20, 0));
        position: fixed;
        top: 0;
        z-index: 100;
    }
    .header {
        width: 90%;
        padding-top: 50px;
        padding-left: 5%;
        padding-right: 5%;
    }
    
    a.logo {
        color: #ffffff;
        text-decoration: none;
        font-size: 2rem;
        width: 40%;
        float: left;
        line-height: 2rem;
    }
    
    a {
        color: #ffffff;
        text-decoration: none;
    }
    
    a:hover {
        color: #11171d;
    }
    .hero {
        width: 100vw;
        height: 100vh;
        text-align: center;
    }
    .element{
        position: absolute;
        top: 50%;
        left: 50%;
        width: 50%;
        transform: translate(-50%, -50%);
    }
    h1{
        font-size: 7rem;
        color: #ffffff;
        font-weight: 200;
        line-height: 8rem;
        margin:0;
    }
    h2{
        font-size: 2rem;
        font-weight: 100;
        color: #ffffff;
        font-weight: 200;
        line-height: 2rem;
        margin: 0;
        padding-top: 5%;
    }
    .mail{
        font-size: 1.1rem;
        font-family: Arial, Helvetica, sans-serif;
    }

    button{
        background-color:rgb(255, 70, 94);
        width: 200px;
        height: 60px;
        text-align: center;
        border: 0px;
        margin-top: 10%;
        border-radius: 4px;
    }

    @media (max-width: 1100px){
        h1 {
            font-size: 5rem;
            line-height: 5.5rem;
        }
        }

        @media (max-width: 500px){
            h1 {
                margin-top: 30px;
                font-size: 3.5rem;
                line-height: 3.5rem;
            }
            h2 {
                font-size: 1.5rem;
                line-height: 2rem;
                margin-top: 20px;
                margin-bottom: 30px;
            }
            .element{
                position: relative;
                width: 90%;            }
            }