@font-face {
    font-family: 'Work Sans';
    src:  url('fonts/WorkSans-VariableFont_wght.ttf') format('truetype')}


*{
    transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) all;
    -webkit-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) all;
    -moz-transition: 0.4s cubic-bezier(0.075, 0.82, 0.165, 1) all;
    user-select: none;

}
body{
    background: black;
    height: 100vh;
    width: 100vw;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
h1{
    color: white;
    font-variation-settings: 'wght' 800;
    font-family: "Work Sans", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 7vw;
   
}


h1 span{
    font-variation-settings: 'wght' 100;
}

a{
    padding:5px 15px;
    border: 1px white solid;
    color: white;
    outline: none;
    font-family: "Work Sans", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: black;
    text-decoration: none;
}

a:hover{
    box-shadow: 6px 6px #ffffff;
        transform: translateX(-6px) translateY(-6px);
        -webkit-transform: translateX(-6px) translateY(-6px);
        -moz-transform: translateX(-6px) translateY(-6px);
}

a:active{
    transform:none;
    -webkit-transform: none;
    -moz-transform: none;
    box-shadow: 0 0 #ffffff;
}

#links{
    display: flex;
    column-gap: 12px;
}