body {
    color: #fff;
    background: #000;
    font-family: "Inter", sans-serif;
    line-height: 1.5rem;
}

header {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 30px;
}

main {
    padding-top: 15px;
    padding-bottom: 100px;
    margin-bottom: 100px;
    padding-left: 30px;
    padding-right: 30px;
}

.padded {
    padding-top: 20px;
    padding-bottom: 40px;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    display: block;
    margin-right: 20px;
    font-family: "Bitcount Grid Double", system-ui;
    text-decoration: none;
}

a,
a:link,
a:active,
a:visited {
    color: #fff;
}

.centered {
    text-align: center;
}

h1 {
    font-size: 3rem;
    font-family: "Bitcount Grid Double", system-ui;
    font-weight: normal;
    color: #00ff70;
    line-height: 3rem;
}

h2 {
    font-family: "Bitcount Grid Double", system-ui;
    font-size: 1.85rem;
    padding-top: 20px;
    padding-bottom: 5px;
    font-weight: normal;
}

h3 {
    font-family: "Bitcount Grid Double", system-ui;
    font-size: 1.2rem;
    margin-top: 45px;
    font-weight: 500;
    color: #00ff70;
}

h4 {
    font-family: "Bitcount Grid Double", system-ui;
    padding-top: 5px;
    margin-bottom: 15px;
    font-weight: normal;
}

nav a {
    margin-right: 7px;
}

.project-image {
    transition: all 0.5s ease-in-out;
    opacity: 1;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    object-fit: contain;
    transform: translateY(0px);
    border-radius: 15px;
}

.project-image:hover {
    transform: translateY(-20px);
    opacity: 1;
    z-index: 1;
    scale: 110%;
}

#project-description > div {
    transition: all 0.5s ease-in-out;
}

@media only screen and (max-width: 600px) {
    #page,
    main {
        max-width: 90%;
        margin: 0 auto;
        background: #000;
    }

    .project-image {
        height: auto;
    }
}

@media only screen and (min-width: 768px) {
    main,
    #page {
        max-width: 800px;
        margin: 0 auto;
        background: #000;
    }
}
