header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    position: fixed;
    z-index: 100;
    top: 0;
    width: calc(100vw - 60px);

    font-family: 'Courier New', Courier, monospace;
    background: rgba(255, 255, 255, 0.8);
}

.logo h1 {
    font-size: 40px;
}

.anchors {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 30px;
}

.anchors a {
    text-decoration: none;
    color: black;
    font-size: 17px;
    font-weight: 600;
}

@media (max-width: 768px) {
    header {
        padding: 10px 30px;
    }

    .logo h1 {
        font-size: 25px;
    }

    .anchors {
        display: none;
    }
}