@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: #090909;
    color: #eee;
}
header{
    background: #070707;
    border-bottom: 1px solid #202020;
    height: 64px;
    width: 100%;
}
.headwrap{
    width: 80%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header img{
    width: 45px;
    height: 45px;
    border-radius: 100%;
}
header .left{
    display: flex;
    color: #eee;
    align-items: center;
}
header .left h1{
    font-size: 16px;
}
header .left p{
    opacity: 0.75;
    font-size: 14px;
    font-weight: 300;
}
.lefttext{
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 16px;
}
header nav ul{
    display: flex;
    align-items: center;
}
header nav ul li{
    list-style: none;
    margin-left: 32px;
}
header nav ul li a{
    color: #eee;
    opacity: 0.75;
    text-decoration: none;
    font-weight: 300;
    font-size: 14px;
}
header nav ul li a:hover{
    text-decoration: underline;
}
.wrapper{
    width: 80%;
    margin: 0 auto;
    background: #070707;
    border: 1px solid #202020;
    border-radius: 16px;
    margin-top: 32px;
    margin-bottom: 64px;
}
.wrapper2{
    margin: 0 auto;
    background: #070707;
    margin: 128px;
}
.contents{
    color: #bf83ff;
}
.contents li{
    margin-bottom: 8px;
}
nav li a{
    color: #bf83ff;
}
section{
    margin-top: 32px;
}
section p{
    margin-top: 8px;
}
section li{
    margin-top: 8px;
    color: #eeeeee90;
}
section a{
    color: #bf83ff;
    text-decoration: none;
}
section a:hover{
    text-decoration: underline;
}
.updated{
    margin-bottom: 64px;
}
footer{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
    color: #eeeeee90;
    border-top: 1px solid #202020;
    font-size: 14px;
}