*{
    margin: 0;
    box-sizing: border-box;
    /* background-color: #EDDCC8; */
}

.bitcount-grid-single-body {
  font-family: "Bitcount Grid Single", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "CRSV" 0.5,
    "ELSH" 0,
    "ELXP" 0;
}

body{
    background-color: #EDDCC8;
}


/* HEADER */
#header{
    color:#8A6153;
    margin-top: 1%;
    width: 98%;
}

#header ul{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

#header li{
    list-style: none;
    margin: 0 1%;
}

#header h1{
    width: 80vw;
    text-align: center;
    margin-top: 1%;
    font-size: calc(3px + 3vw);
}

#img1{
    width: 7vh;
    padding-top: 10%;
}

#img2{
    width: 10vh;
    padding-right: 5%;
}



/* this code was helped with chat gpt to learn about localstorage & how to input new information in the array */
#buttons-container {
    display: flex;          
    flex-wrap: wrap;         
    gap: 10px;               
    justify-content: center; 
    margin-top: 5px;
}

#buttons-container button {
    display: flex;
    flex-direction: column;   
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    /* color: #EDDCC8; */
    font-weight: bold;
    font-size: 1rem;
}

#buttons-container button:hover{
    opacity: 80%;
}


/* main */

main{
    text-align: center;
}


main{
    position: absolute;
    /* positions h1 tag to bottom center */
    top: 75%;
    left: 30%;

    color: #8A6153;
    z-index: 2;
    text-align: center;
    
}




/* canvas / sine wave */
canvas{
    background: #EDDCC8;
    width: 100%;
    height: 100%;
    display: block;
    z-index: 1;


    
}
