@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:wght@400;500;600&display=swap');

* {
    box-sizing: border-box;
}

body{
    margin: 0;
    font-family: 'Comorant Garamond', serif;
    background-color: #e3ddc8;

}

/* Navigation Bar */
nav {
    width: 220px;
    background-color: #6B1F1F;
    padding-top: 40px;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    border-right: 4px solid #413722;
} 

nav div {
    display: block;
    padding: 18px 24px;
    border-bottom: 1px solid rgba(247, 243, 234, 0.15);
}

nav a {
    color: #F7F3EA;
    text-decoration: none;
    font-size: 22px;
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

nav div:hover {
    background-color: #8a2b2b;
}

.main-content {
    margin-left: 220px;
    min-height: 100vh;
    padding: 40px;
}

/* Typography */
h1 {
    font-family: 'Cinzel', serif;
    font-size: 44px;
    text-align: center;
    color: #6B1F1F;
    margin-top: 0;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    color: #6B1F1F;
    margin-top: 30px;
}

h3 {
    font-family: 'Cinzel', serif;
    font-size: 22px;
    color: #413722;
    margin-top: 24px;
}

p {
    font-size: 20px;
    line-height: 1.6;
}

img {
    max-width: 100%;
    border: 4px solid #413722;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
}

body.home {
    background-image: 
        linear-gradient(rgba(227, 221, 200, 0.5)),
        url("images/map-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

body.main-content {
    background-color: #e3ddc8;
}

footer {
  margin-left: 220px; 
  text-align: center;
  font-size: 12px;
  padding: 10px 0;
  color: #555;
}
footer img {
  display: inline;     
  height: 16px;         
  vertical-align: middle;
  margin-left: 3px;
}

.basicTable {
    text-align:center;
    font-size: 18px;
}

.kyle-svg {
    width:auto;
    border: 4px solid #413722;
    border-radius: 10px;
    display: block;
    margin: 20px auto;
    text-align:center;
}