body{
    display: flex;
    flex-direction: column;
    height: 100vh;
    width: 100%;
    background-color: rgb(234, 234, 234);
    font-family: monospace;
    color: black;
    margin: 0;
    user-select: none;
    font-size: 16px;
}

a{
    color: inherit;
}

header{
    height: 70px;
    margin: 10px;
    border-radius: 20px;
    align-content: center;
    display: flex;
    justify-content: space-between; 
    align-items: center;
    background-color: white;
    box-shadow: 0px 0px 20px 0px;
}

header h1{
    margin: 0;
    margin-left: 20px;
}

#header-links{
    margin-right: 30px;
}

#header-links a{
    background-color: black;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color ease 0.3s;
}

#header-links a:hover{
    background-color: rgb(35, 35, 35);
}

main{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 50px;
}

#about{
    width: 100%;
    max-width: 1000px;
}

#links{
    width: 100%;
    max-width: 1000px;
}

#links td{
    border: 1px solid black;
    width: 150px;
    height: 2em;
    text-align: center;

}