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

:root {
    --accent: #8080FF;
    --bg: #191919;
}

body {
    font-family: "proggy", "Courier New", monospace;
    background-color: var(--bg);
    text-align: center;
    color: white;
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

marquee {
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 0;
    border-bottom: 1px solid #333;
}

a { 
    color: var(--accent); 
    text-decoration: none;
    transition: all 0.2s ease;
}
a:hover { 
    color: #ababff; 
    text-shadow: 0 0 8px var(--accent);
}

#title { 
    cursor: pointer; 
    transition: text-shadow 0.2s ease;
}
#title:hover { 
    color: #ababff;
    text-shadow: 0 0 10px var(--accent); 
}

#about {
    margin: auto;
    position: relative;
    min-width: 320px;
}

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

.box-content {
    border: 1px solid var(--accent);
    padding: 30px;
    box-shadow: 0 0 20px rgba(128, 128, 255, 0.1);
    background: var(--bg);
}

.box-title {
    transform: translateX(-50%);
    background: var(--bg);
    position: relative;
    width: max-content;
    padding: 0 10px;
    top: 0.8em;
    left: 50%;
    z-index: 1;
}

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

#news {
    display: flex;
    gap: 30em;
}