body {
    color: white;
    background-color: black;
}

.section-header {
    font-size: 3.5vw;
    font-family: "Space Mono", monospace;
    font-weight: 400;
    font-style: normal;
    margin-top: 10vh;
    margin-bottom: 6vh;
    text-align: center;
}

.boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    margin-top: 4vh;
    gap: 5vh;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #333335;
    width: 70vw;
    max-width: 1100px;
    min-width: 320px;
    padding: 2.5vw 2vw 2.5vw 2vw;
    border-radius: 1vw;
    box-sizing: border-box;
    margin-bottom: 0;
}

.box img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 0.5vw;
    margin-bottom: 2vh;
}

.box p {
    text-align: justify;
    font-size: 1.1vw;
    line-height: 1.8;
    margin-bottom: 2vh;
    font-family: "Space Mono", monospace;
    max-width: 90%;
}

.box h1 {
    font-family: "Orbitron", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-size: 2.5vw;
    margin-bottom: 2vh;
    margin-top: 0;
    text-align: center;
    letter-spacing: 0.05em;
}

.navbar {
    display: flex;
    background-color: black;
    position: fixed;
    width: 100vw;
    justify-content: center;
    top: 0;
    left: 0;
    margin-bottom: 0;
    padding-bottom: 3vh;
}

.navbar a {
    color: white;
    padding: 1.5vh 2vw;
    text-decoration: none;
    text-align: center;
    font-size: 1.3em;
}

.navbar a:hover {
    color: red;
}
