/* ===========================
RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===========================
BODY
=========================== */

body{

    font-family:"Inter",sans-serif;
    background:#FAFAFA;
    color:#111111;

}

/* ===========================
HERO
=========================== */

.hero{

    width:100%;
    max-width:1100px;

    margin:0 auto;

    min-height:100vh;

    display:flex;
    flex-direction:column;
    justify-content:center;

}

/* ===========================
TITLE
=========================== */

h1{

    font-size:96px;
    font-weight:700;
    letter-spacing:-3px;

    margin-bottom:18px;

}

/* ===========================
ROLE
=========================== */

h2{

    font-size:30px;
    font-weight:400;

    color:#666666;

    margin-bottom:60px;

}

/* ===========================
DESCRIPTION
=========================== */

.intro{

    max-width:760px;

    font-size:34px;

    font-weight:300;

    line-height:1.45;

    margin-bottom:60px;

}

/* ===========================
LINKS
=========================== */

.links{

    display:flex;
    gap:40px;

}

.links a{

    text-decoration:none;

    color:#111111;

    font-size:20px;

    font-weight:400;

    transition:opacity .2s;

}

.links a:hover{

    opacity:.45;

}

/* ===========================
MOBILE
=========================== */

@media (max-width:768px){

.hero{

    min-height:auto;

    justify-content:flex-start;

    padding:30px 24px;

}

h1{

    font-size:44px;
    letter-spacing:-2px;
    line-height:1;

    margin-bottom:14px;

}

h2{

    font-size:18px;
    line-height:1.45;

    margin-bottom:45px;

}

.intro{

    max-width:100%;

    font-size:22px;

    font-weight:300;

    line-height:1.5;

    margin-bottom:50px;

}

.links{

    display:flex;

    flex-direction:column;

    align-items:flex-start;

    gap:18px;

}

.links a{

    font-size:20px;

}

}