@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}
body{
    background: #050505;
}
header{
    border-bottom: 1px solid rgba(255,255,255,0.1);
    height: 5vh;
}
.headerContents{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 80%;
    margin: 0 auto;
}
header h2 a{
    font-size: 20px;
}
header a{
    color: #eee;
    text-decoration: none;
    font-size: 14px;
}
header nav{
    
}
header nav ul{
    display: flex;
    
}
header nav ul li{
    list-style: none;
    margin-left: 2vw;
}

