*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif;
    text-decoration: none;
    color: #fff;
}

html,
body{
    background: #151515;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

::selection {
    background-color: #d4be98;
    color: #000;
}

::-moz-selection {
    background-color: #d4be98;
    color: #000;
}

main {
    flex-grow: 1;
}

h1.title{
    text-align: center;
    margin-top: 185px;
    font-size: 84px;
    color: #D3869B;
    letter-spacing: -0.32px;
}

h2.subtitle{
    text-align: center;
    font-size: 42px;
    color: #918274;
    margin-top: 5px;
    font-weight: 500;
}

div.socials{
    margin-top: 55px;
    text-align: center;
}

div.socials div.content{
    padding: 10px 20px;
    border-radius: 25px;
    background-color: #3c3836;
    font-size: 18px;
    font-weight: 600;
    margin: 10px 5px;
    display: inline-block;
}

div.socials i{
    font-size: 32px;
    color: #D4BE98;
    margin: 8px;
    transition: all .2s;
}

div.socials i:hover{
    opacity: 70%;
}

div.mail{
    text-align: center;
    margin-top: 35px;
    transition: all .2s;
}

div.mail a{
    background-color: #3c3836;
    padding: 15px 20px;
    color: #D3869B;
    border-radius: 20px;
    font-size: 19px;
    font-weight: 500;
    transition: all .2s;
}

div.mail span{
    color: #D3869B;
    transition: all .2s;
}

div.mail i{
    vertical-align: middle;
    color: #D3869B;
    margin-right: 5px;
    font-size: 24px;
    transition: all .2s;
}

div.mail a:hover span,
div.mail a:hover i{
    opacity: 80%;
}

@media screen and (min-width: 1750px){

    h1.title{
        font-size: 96px;
    }

    h2.subtitle{
        font-size: 55px;
    }

    div.socials i{
        font-size: 40px;
        color: #D4BE98;
        transition: all .2s;
    }

    div.mail a{
        font-size: 20px;
    }

    div.mail i{
        font-size: 28px;
    }

}


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

    h1.title{
        font-size: 50px;
        margin-top: 125px;
    }

    h2.subtitle{
        font-size: 30px;
    }

    div.socials i{
        font-size: 30px;
        color: #D4BE98;
        transition: all .2s;
    }

    div.mail a{
        font-size: 18px;
    }

    .custom-cursor{
        display: none;
    }
}