@font-face {
    font-family: 'OPTIEdgarBold-Extended';
    src: url('fonts/OPTIEdgarBold-Extended2.woff2') format('woff2'),
    url('fonts/OPTIEdgarBold-Extended2.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

body {
    background-color: #1e1e1e;
    text-align: center;
    color: white;
    font-family: 'OPTIEdgarBold-Extended';
    font-weight: bold;
    font-style: normal;
    font-kerning: none;
}

img {
    width: 100%;
}

.container {
    padding: 5rem 15rem;
    max-width: 96rem;
    margin-left: auto;
    margin-right: auto;
}

.description {
    font-size: 2rem;
}

@media (pointer: fine) {
    .hover-image {
        filter: brightness(50%);
        -webkit-filter: brightness(50%);
        transition: 0.5s;
    }

    .hover-image:hover {
        filter: none;
        -webkit-filter: brightness(100%);
    }
}

.projects-text {
    padding-top: 10rem;
    padding-bottom: 2rem;
    margin: 0;
    font-size: 3rem;
}

.project {
    display: block;
    margin-bottom: 10rem;
    font-size: 2rem;

    color: inherit;
    text-decoration: none;

    p {
        margin: 1rem;
    }
}

.links-row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;

    img {
        height: 10rem;
    }
}

@media (width < 80rem) {
    .container {
        padding: 1rem 3rem;
    }

    .projects-text {
        padding-top: 5rem;
        font-size: 2rem;
    }

    .project {
        margin-bottom: 6rem;
        font-size: 2rem;
    }
}
