@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600&display=swap");

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    color: #111827;
    font-family: "JetBrains Mono", monospace;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    text-align: center;
}

.logo {
    width: 128px;
    height: auto;
}

#details {
    max-width: 196px;
    display: grid;
    gap: 2.5rem;
}

#tagline {
    margin: 0;
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 600;
}

.contact {
    display: grid;

    font-size: 0.9rem;
    font-style: normal;
    line-height: 1.6;
}

.contact a {
    color: inherit;
    text-decoration: none;
}

.contact a:hover,
.contact a:focus {
    text-decoration: underline;
}
