@import url(reset.css);
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root {
    --ff: "IBM Plex Mono", monospace;
    --copy: #363636;
    --col-content: #656565;
    --bg: #e1e1e1;
    --link: rgb(155, 155, 155);
    
}

h3 {
    font-weight: 500;
}

a {
    color: var(--link);
    transition: all 0.2s ease-in-out;
}

body {
    font-family: var(--ff);
    color: var(--copy);
    background-color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.content {
    margin-inline: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.text {
    max-width: 800px;
    width: fit-content;
    margin: 0 auto;
}

footer {
    display: flex;
    justify-content: center;

}

.link {
    width: fit-content;
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
}

a:hover {
    color: var(--copy);
}
