@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url("https://ocv.ac/reset");


.wrap {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #080808;
}

.content {
    width: 640px;
    background-color: #121212;
    font-family: "Inter";
    color: #fff;
    padding: 24px;
}

h1 {
    font-weight: 600;
    font-size: 64px;
    text-align: center;
}

.dim {
    font-size: 52px;
    font-weight: 400;
    color: #484848;
}

nav {
    display: flex;
    background-color: #080808;
    padding: 6px;
    display: flex;
    justify-content: space-between;
    gap: 6px;
}

nav a {
    background-color: #181818;
    width: 100%;
    padding: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 600;
}

h2 {
    font-size: 36px;
    font-weight: 600;
    color: #efefef;
}

p {
    color: #dedede;
    line-height: 1.3;
}

hr {
    height: 0;
    margin: 6px 0;
}