* {
    font-family : monospace;
}

:root {
    --background-color: black;
    --text-color: white;
}

body {
    background-color: var(--background-color);
    color: var(--text-color);
    display: flex;
    justify-content: center;
}

main {
    margin-top: 2em;
    margin-left: 10%;
    margin-right: 10%;
    max-width: 50em;
}

#description {
    text-align: justify;
    hyphens: auto;
    text-indent: 3ch;
    margin-top: 2em;
    margin-bottom: 2em;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    grid-auto-rows: minmax(50px, auto);
    gap: 3em;
}

#description p {
    margin: 0%;
}

hr{
    margin: 2em;
}

h1{
    text-align: center;
    animation: blinker 2s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

#contact-info {
    text-align: center;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: ease-in;
}

a:hover{
    text-decoration: underline;
    font-style: italic;
}

a::after{
    color: var(--text-color);
    text-decoration: none;
}