button {
    cursor: pointer;
    text-transform: uppercase;
    background-color: white;
    border: 1px solid black;
    padding: 10px;
    border-radius: 30px;
    transition-duration: 0.2s;
    pointer-events: auto;
}

.header {
    justify-content: space-between;
}

.headerButtons {
    width: 30vw;
    display: flex;
}

.buttonHome {
    justify-content: left;
}

#buttonHome {
    background-color: var(--background);
    color: var(--foreground);
}

#buttonHome:hover {
    background-color: white;
    color: black;
}

.buttonsSize {
    justify-content: center;
    gap: 5px;
}

.buttonInfo {
    justify-content: flex-end;
}

#buttonInfo {
    background-color: var(--background);
    color: var(--foreground);
}

#buttonInfo:hover {
    background-color: white;
    color: black;
}

button:hover {
    background-color: var(--background);
    color: var(--foreground);
}

/* header */
#header{
    position: sticky;
    top: 5px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    pointer-events: none;
}

button a {
    text-decoration: none;
}

.active {
    color: var(--foreground);
    background-color: var(--background);
}

/* bio */
.bio {
    width: 98vw;
    height: 25vh;
    display: flex;
    padding-bottom: 5px;
}

.bio p {
    margin: 0;

}

.homeBio {
    padding-left: 5px;
    width: 49vw;
}

.contact {
    width: 49vw;
    text-align: right;
}

span {
    align-self: flex-end;
}



@media (max-width: 800px)  {

    #header{
        position: -webkit-sticky;
        position: sticky;
        height: 15vh;
    }

    .headerButtons {
        height: 10vh;
 
    }

    .buttonsSize{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    #buttonInfo {
        width: 30vw;  
    }

    #buttonHome {
        width: 30vw;
    }

    .bio {
        width: 96vw;
        height: 25vh;
        margin-top: 23pt;
        padding-bottom: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .homeBio {
        width: 98vw;
    }
    
    .contact {
        width: 98vw;
        text-align: center;
        line-height: 23pt;
        margin-top: 11.5pt;
        margin-bottom: 11.5pt;
    }
}