body {
    margin:0;
    padding:0;
    font-family: 'Roboto', sans-serif;
    background-color: darkslategray;
    border: 4px solid black;
}

#header {
    background-color: black;
    height: 13%;
    width: 100%;
    position: fixed;
    align-items: center;
}

#buttons {
    display: flex;
    justify-content: space-around;
    align-items: center;


}

#buttons button {
    border: 2px black;
    background-color: black;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    cursor: pointer;
    border-radius: 12px;

}

#buttons button:hover {
    background-color: white;
    color: black;
}

#buttons button:active {
    background-color: black;
    color: white;
}

#buttons button:focus {
    outline: none;
}
#devnotice {
    color: white;
    font-size: 34px;
    text-align: center;
    margin-top: 10px;
}