body {
    font-family: 'Times New Roman', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: rgb(249, 248, 244);
    color:rgb(44, 42, 41);
    overflow-x: hidden; /*prevents horizontal overflow*/
}

header, main {
    padding: 20px;
    margin-top: 15px;
} 

footer {
    text-align: center;
    padding: 20px;
}

th, td {
    padding: 10px;
}

.navigation-row {
    position:absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-wrap: wrap; /*Ensure items wrap if they exceed horizontally*/
    width: 100%;
    border: 1px solid rgb(100, 27, 54);
    margin-bottom: 1%;

}

.navigation-row .Button {
    flex: 1;
    margin: 0;
    padding: 25px;
    background-color: rgb(120, 27, 54);
    color: rgb(232, 197, 3);
    text-decoration: none;
    text-align: center;
    font-family: 'Lato', sans-serif;
    max-width: 100%;
    max-height: auto;

}

.Button:hover {
    background-color: rgb(150, 27, 54);
    color: rgb(232, 197, 3);
}

.links {
    text-decoration: underline;
    font-weight: bold;
    color: rgb(44, 42, 41);
    text-align: center;
}