@font-face {
  font-family: verdana;
  src: url(verdana.ttf);
}

:root {
    --accent: #FF7CFF;
}

body {
    font-family: "verdana", Arial, sans-serif;
    background-color: #0e0e0e;
    /* user-select: none; */
    overflow: hidden;
    color: white;
    margin: 0;
}

a {
    text-decoration-color: #777;
    cursor: crosshair;
    color: white;
}
a:hover { color: #ffceff; }

.accent { color: var(--accent); }

.box {
    backdrop-filter: blur(5px);
    border: 2px solid #222;
    background: #00000025;
    padding: 20px;
}

#about {
    transition: border-color 0.3s ease-out;
    transform: translate(-50%, -50%);
    flex-direction: column;
    cursor: crosshair;
    text-align: center;
    position: absolute;
    display: flex;
    left: 50%;
    gap: 5px;
    top: 50%;
}

#about:hover {
    border: 2px solid #555;
}

#about p {
    margin-bottom: 0;
    font-size: 15px;
    color: #777;
    margin-top: 0;
}

#about img {
    transform: translateX(-50%);
    position: relative;
    width: 100px;
    left: 50%;
}

#title {
    margin-top: -4px;
    font-size: 20px;
}

#main-links {
    text-align: center;
    display: flex;
    gap: 10px;
}

#extra-links {
    flex-direction: column;
    display: flex;
    gap: 2px;
}

#extra-links a { color: #b6b6b6; }
#extra-links a:hover { color: #d1aad1; }

#ring {
    transform: translate(-50%, -100%);
    top: calc(100% - 50px);
    position: absolute;
    text-align: center;
    color: #666;
    width: 80%;
    left: 50%;
}

#ring a { color: #888; }
#ring a:hover { color: #d1aad1; }