/* MAIN PAGE STUFFS */

body {
  background-image: url('background.webp');
}

hr {
  width: 97%;
  margin: 15px auto 15px auto;
}

.img-list {
  width: 25%;
  margin: 10px;
  border-radius: 15px;
}

.img-list-margin {
  background-color: #854222;
  display: flex;
  justify-content: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* BUTTONS */

.page-button {
    width: 25%;
    height: 25%;
    border-width: 0px;
    border-radius: 5px;
    border-style: solid;
    font-size: 50px;
    cursor: pointer;
    transition: .3s;
    background: #854222;
    color: whitesmoke;
    border-color: wheat;
    margin: 15px auto 15px auto;
}

.page-button:hover {
    color: wheat;
}

.page-button-margin {
  background-color: #854222;
  display: flex;
  justify-content: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}

/* FONTS */

.page-text {
  width: 95%;
  margin: 0 auto 0 auto;
}

.ibm-plex-sans-page {
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 125%;
}

.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
  color: whitesmoke;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.6);
}

.libre-baskerville-title {
  font-family: "Libre Baskerville", serif;
  font-weight: 900;
  font-style: normal;
  font-size: 500%;
  color: whitesmoke;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.6);
  margin-top: 15px;
}

.libre-baskerville-regular-italic {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: italic;
  color: whitesmoke;
}

.centered-page {
  text-align: center;
}

.behind-text {
  width: 50%;
  margin: 50px auto 50px auto;
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: sienna;
  border-radius: 5px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.6);
}

/* Title Nav */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    z-index: 100;
    box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.6);
}

.headercolor {
  background-color: sienna;
}

.container {
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
}

header .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header h1 {
    font-size: 1.8rem;
    color: #333;
}

header nav ul {
    list-style-type: none;
    display: flex;
    z-index: 1000;
}

header nav ul li {
    margin: 0 10px;
    z-index: 1000;
}

header nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    z-index: 1000;
}

header nav ul li a:hover {
    color: wheat;
    z-index: 1000;
}

.container ::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 2px;
    transition: .3s;
    background: wheat;
}

.container :hover::before {
    width: 100%;
}

div.headertitle {
    position: fixed;
    top: 0;
    padding-top: 0px;
    margin-left: -70px;
    padding-left: -70px;
}