html, body {
height: 100%;
margin: 0px;
}

#header {
height: 80px;
background-color: saddlebrown;
color: burlywood;
line-height: 80px;
text-align: center;
}

#nav {
background-color: #E4BB83;
height: calc(100% - 100px);
width: 100px;
float: left;
}

#nav a {
text-align: center;
display: block;
background-color: #E4BB83;
padding: 10px;
color: #A97B41;
text-decoration: none;
}

#nav a:hover {
background-color: #8B4513;
color: #fff;
}

#main {
width: 600px;
padding: 20px;
float: left;
}

#footer {
height: 20px;
background-color: saddlebrown;
color: white;
text-align: center;
clear: both;
}

.caption {
background-color: saddlebrown;
color: white;
text-align: right;
font-family: arial, sans-serif;
font-size: 9px;
padding: 5px;
}

.caption a {
color: white;
}
body {
    font-family: 'Montserrat', sans-serif;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.chess-btn-anim {
    transition: transform 0.2s ease-in-out;
}

.chess-btn-anim:hover {
    transform: scale(1.08);
    cursor: pointer;
}
