@font-face {
    font-family: "Space Grotesk";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("/assets/fonts/space-grotesk-400.woff2") format("woff2");
}
@font-face {
    font-family: "Space Grotesk";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("/assets/fonts/space-grotesk-700.woff2") format("woff2");
}
* {
    margin: 0;
    font-family: "Space Grotesk", sans-serif;
}
.navigator {     
    display: flex;
    justify-content: center;
    gap: 20px;
    background-color: #2e2e2e;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}
.navigator a {
    color: #aaaaaa;
    text-decoration: none;
    padding: 6px 12px;
    border-radius: 6px;
    transition: color 0.2s, background-color 0.2s;
}
.navigator a:hover {
    color: #ffffff;
    background-color: #3a3a3a;
}
.navigator a.active {
    color: #ffffff;
}
body {
    background-color: #1e1e1e;
    color: #ffffff;
}
.body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90vh;
}
.header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}
.header-img img {
    width: auto;
    height: 150px;
    border-radius: 50%;
}
.header-text strong {
    font-size: 2rem;
}
.header-text span {
    font-size: 1rem;
    color: #aaaaaa;
    display: block;
}
.imp-content span {
    display: block;
}
.links {
    display: flex;
    gap: 40px;
    margin-top: 16px;
}
.links img {
    display: block;
    width: 40px;
    height: auto;
    opacity: 0.7;
    transition: opacity 0.2s, transform 0.2s;
}
.links img:hover {
    opacity: 1;
    transform: translateY(-3px);
}