* {
    font-family: 'Georgia', Courier, monospace;
    font-size: 15px;
    color: #B4CCDF;
    scrollbar-width: thin;
    scrollbar-color: #c58359 #f8f1ed;
}

input[type='checkbox'] {
    accent-color: #B4CCDF;
}

h1 {
    font-size: 20px;
}

h2 {
    font-size: 16px;
    text-transform: uppercase;
    text-decoration: solid underline #a7521e 3px;
    text-underline-offset: 3px;
    text-align: center;
    margin: 8px;
}

h3 {
    font-size: 15px;
    color: #a7521e;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .2em;
}

a {

}

a:hover {

}

#nav a {
    width: 100%;
    background-color: #f8f1ed;
    padding: 15px;
    margin: 3px;
    font-size: 10px;
    color: #c58359;
    text-decoration: underline dotted;
    text-transform: uppercase;
    text-align: center;
}

#nav a:hover {
    color: #a7521e;
    font-weight: bold;
}

b {
    font-size: 15px;
    color: #c58359;
    text-transform: uppercase;
    text-decoration: underline dotted;
}

em {
    font-size: 8px;
    color: #a7521e;
    text-transform: uppercase;
    background-color: #F8F1ED;
    border-radius: 20px;
    vertical-align: middle;
    padding: 2px;
}

hr {
    border: 1px dashed #c58359;
    margin: 15px;
    width: 95%;
}

.inline {
    height: 11px;
    vertical-align: middle;
}

.pageContent {
    display: flex;
}

.sideImg {
    overflow: hidden;
    width: 30%;
    height: 85vh;
    overflow: hidden;
    display: flex;
    justify-content: left;
    align-items: center;
    margin-left: 10px;
}

.sideImg img {
    height: 100%;
}

.text {
    width: 70%;
}

.banner {
    background-color: #a7521e;
    width: 95%;
    height: 100px;
    margin: 15px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.banner img {
    width: 105%;
    object-fit: cover;
}

.favourites, .album {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.item {
    background-color: #f3f0eb;
    box-shadow: inset 0px 0px 6px rgba(49, 28, 6, 0.051);
    width: 22%;
    height: fit-content;
    margin: 5px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.favourites .item {
    height: 185px;
}

.album .item {
    height: 100px;
}

.item img {
    height: 105%;
}

.buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
}

.buttons img {
    margin: 2px;
    height: 30px;
}

#mainNav {
  background-color: var(--nav-background-color);
  width: 100%;
  margin: 0;
  z-index: 999;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(145, 112, 67, 0.2);
  -moz-box-shadow: 0px 0px 5px 0px rgba(145, 112, 67, 0.2);
  box-shadow: 0px 0px 5px 0px rgba(145, 112, 67, 0.2);
  position: absolute;
  top: 0;
}