* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
body{
    background-color: #151515;
    color:  #ececec;
    overflow-y: auto;
    margin-top: 40px;
}
nav{
    height: 40px;
    top: 0;
    position: fixed;
    width: 100%;
    background-color: #151515;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0rem calc(100vw -  1300px)/2;
}
nav a {
    text-decoration: none;
    color: #00ff73;
    text-align: center;
    font-weight: bold;
    padding: 0 2rem;
}
nav a:hover {
    border-style: solid;
    border-radius: 10px;
}
button{
    background-color: transparent;
    border-radius: 50%;
    font-weight: bold;
    border-style: hidden;
    cursor: pointer;
}
.title {
    font-size: 1.5rem;
    font-weight: bold;
    font-style: italic;
    padding: 0 2rem;
}
.center{
    display: flex; 
    justify-content: center; 
    align-items: center;
}
.grid{
    display: grid;
    align-content: space-between;
    max-width: fit-content;
    margin-left: .75rem;
    padding: 2rem;

}
.grid a{
    display: grid;
    line-height: 10.4;
    width: 552px;
    justify-content: center;
    color: #00ff73;
    text-decoration: none;
    border-style: solid;
    font-weight: bold;
}
.flex-container {
    display: flex; /* This makes the child grids align next to each other */
    gap: 0;     /* Optional: Add some space between the grids */
}
.white-mode {
    background-color:  #ececec;
    color: black;
    nav {
        background-color:  #ececec;
    }
    nav a {
        color: #00682f;
    }
}
