@font-face {
    font-family: proggy;
    src: url(proggy.ttf);
}

:root {
    --accent: #2b29c4;
}

body {
    font-family: proggy, Arial, sans-serif;
    margin: 0;
    color: white;
    text-align: center;
    background-image: url(bg_tile.gif);
    background-repeat: repeat;
}

a {
    color: var(--accent);
}

a:hover {
    color: #4a48dd;
}

#about {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.accent {
    color: var(--accent);
}

.box-content {
    border: 2px solid #777;
    padding: 45px 70px;
    background: #191919;
    font-size: 1.3rem;
    min-width: 420px;
}

.box-title {
    position: relative;
    top: 1.65em;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    padding: 0 8px;
    background: #191919;
    font-size: 1.1rem;
    cursor: pointer;
}

#links {
    margin-top: 18px;
    display: flex;
    gap: 18px;
    justify-content: center;
}
