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

html {
    box-sizing: border-box;
    font-size: 16px;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    font-family: "Terminus";
    margin: 0;
    padding: 0;
    font-weight: normal;
}

body {
    background-color: black;
    color: white;
    overflow: hidden;
}

::selection {
    background-color: white;
    color: black;
}

#title {
    text-align: center;
    margin: 10px;
}

#title::after {
    content: "_";
    animation: fadeInOut 0.3s linear alternate infinite;
}

@keyframes fadeInOut {
    0% { opacity: 0 }
    49% { opacity: 0 }
    50% { opacity: 1 }
    100% { opacity: 1 }
}

.content {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid white;
}

.content h4 {
    border-bottom: 1px solid white;
}

.content p {
    margin: 2px 5px;
}

#socials {
    border-top: 1px solid white;
}

#socials button {
    outline: none;
    border: none;
    background: none;
    color: white;
    text-decoration: underline;
}

#socials button:hover {
    cursor: pointer;
}

a {
    color: cadetblue;
    text-decoration: none; /* no underline */
}
