/* Fonts */

@font-face {
    font-family: constancies;
    src: url("fonts/LiberationMono-Regular.woff2");
}

@font-face {
    font-family: constancies;
    src: url("fonts/LiberationMono-Bold.woff2");
    font-weight: bold;
}

:root {
    --background-color: #102728;
    --text-color: #abe2e3;
}

/* GREEEEEEEN */
a {
    color: #8fe3b9;
}

a:link {
    color: #8fe3b9;
}

a:visited {
    color: #8fe3b9;
}

a:hover {
    color: #8fe3b9;
}

body {
    font-family: 'constancies';
    background-color: var(--background-color);
    color: var(--text-color);
    margin-inline: auto;
    max-width: 60ch;
    font-size: 20px;
    line-height: 1.5;
    padding: 20px;
}

footer {
    font-size:0.8rem;
    text-align: center;
}

/* Profiles */

@media (min-width: 650px) {
    .profile {
        display: flex;
        align-items: center;
    }
}


img {
    min-width: 200px;
    max-width: 200px;
    margin-top:20px;
    margin-bottom:20px;
}

.profile-text {
    font-size: 18px;
    padding-left: 20px;
}


