#p5_loading {
  font-family: "Courier New", Courier, monospace;
  height: 100%;
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
}

html {
  background-color: rgb(131, 174, 221);
  font-family: "Courier New", Courier, monospace;
  font-size: 1.25rem;
}

body { 
  overflow: hidden;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

a {
  font-family: "Courier New", Courier, monospace;
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}

button {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.1rem;
  color: white;
  background-color: rgb(131, 174, 221);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
  box-shadow: 1px 1px 1px rgb(0, 0, 0);
  border-radius: 5px;
  cursor: pointer;
  padding: 4px;
  text-decoration: underline;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  max-width: 250px;
  margin: 20px;
  display: flex;
  flex-direction: column;
}

header div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;

}

header div h1 {
  font-size: 1.5rem;
  text-align: center;
  color: white;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  text-transform: lowercase;
}

header div img {
  width: 250px;
}

header nav {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
header nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

img {
  max-width: 100%;
  height: auto;
}

#zoom-slider {
  position: absolute;
  bottom: 20px;
  z-index: 100;
  padding: 0 auto;
}

@media only screen and (max-width: 1000px) {

  body {
    overflow: hidden;
  }
  
  header {
    flex-direction: row;
    justify-content: space-between;
    height: auto;
    max-width: unset;
    width: 100%;
    background-color: rgba(121, 164, 211);
    margin: 0;
  }

  header > * {
    margin: 0;
    padding: 20px;
  }

  header div img {
    width: 75px;
    display: none;
  }

  header nav {
    margin: 0;
  }

  header nav button {
    width: 200px;
  }

  #menu {
    position: absolute;
    width: 100%;
    top: 77px;
    right: 0px;
    background-color: rgba(121, 164, 211);
    text-align: right;
    padding: 20px;
  }
}
