@font-face {
    font-family: "Source Code pro";
    src: url("/SourceCodePro-Regular.otf");
}

body {
  font-family: Source Code Pro, monospace;
  color: #cad2c5;
  background-color: rgb(15,15,15);
  margin: 0;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.title {
    font-size: 3.5rem;
    text-align: center;
}

.ascii-art {
    font-family: Source Code Pro, monospace;
    font-size: clamp(1rem, 1vw, 2rem);
    white-space: pre;
    line-height: 1;
    color:white;
    width: fit-content;
    margin: 0 auto;
}

.links {
    display: grid;
    grid-template-columns: auto auto;
    gap: 2rem 6rem;
    justify-content: center;
    width: fit-content;
    margin: 0 auto;
}

@media (max-width: 550px) {
    .title {
        font-size: 2.5rem;
    }

    .links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .ascii-art {
        font-size: 0.80rem;
    }
}

@media (max-width: 400px) {
    .ascii-art {
        font-size: 0.65rem;
    }
}

.links a {
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 1.3rem;
    color:white;
}

.links a:hover {
    text-decoration: underline;
}

p {
    font-size: 24px;
}
