h1 { /* Header */
    font-family: 'American Typewriter', serif;
    text-align: center;
}

header {
    position: sticky;
    top: 0;
    z-index: 3; /* Ensures the header stays above other elements */
}

.headerBox {
    background-color: white;
    width: 101%;
    height: 130px;
    border: 2px solid black;
    position: absolute;
    top: -20px;
    left: -10px;
    z-index: 1;
}

.spacer {
    height: 110px;
}

.flex {
    display: flex;
    justify-content: space-around;
}

img.logo {
    max-width: 100%;
    height: auto;
    min-width: 50px;
    max-height: 100px;
    position: absolute;
    top: 0px;
    left: -5px;
    z-index: 2;
}

.headerFlex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 130px;
}

.headerLink {
    text-decoration: underline;
    margin-left: 10px;
    font-size: 30px;
    z-index: 2;
}

.hiddenInput {
    position: absolute;
    opacity: 0;
}

.bolden {
    font-weight: bolder;
    text-decoration: underline;
}