@font-face {
  font-family: verdana;
  src: url(verdana.ttf);
}

:root {
    --accent: #7851A9;
}

body {
    font-family: "verdana", Arial, sans-serif;
    background-color: #191919;
    user-select: none;
    overflow: hidden;
    color: white;
    margin: 0;
}

a {
    color: white;
}
a:hover { color: #dabcff; }

#background {
    position: fixed;
    height: 100%;
    width: 100%;
}

.filter {
    background-color: rgba(15, 15, 15, 0.75);
    position: fixed;
    height: 100%;
    width: 100%;
}

.accent { color: var(--accent); }

.box {
    backdrop-filter: blur(5px);
    border: 2px solid #222;
    padding: 20px;
}

#about {
    transition: border-color 0.5s ease-out;
    transform: translate(-50%, -50%);
    flex-direction: column;
    text-align: center;
    position: absolute;
    display: flex;
    left: 50%;
    gap: 5px;
    top: 50%;
}

#about:hover {
    border: 2px solid var(--accent);
}

#about p {
    margin-bottom: 0;
    font-size: 15px;
    color: #999;
    margin-top: 0;
}

#title {
    margin-top: -4px;
    font-size: 20px;
}

#links {
    display: flex;
    gap: 10px;
}

#dupes-toggle { color: #c5c5c5; }
#dupes { display: none; }
