/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

/*
dark: 2D2A32
medium: EEEFA8
strong: DDD92A
less strong: EAE151
white: FAFDF6
*/

body {
  background-image: url('https://art4d.com/wp-content/uploads/2025/02/Perfect-Days_screenshot_10.jpg');
   background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.content {
  background-color: #2D2A32;
  color: #FAFDF6;
  font-family: Verdana;
  width: 800px;
  min-height: 80vh;
  margin: 20px auto;
  padding: 20px 50px;
  border: 0px solid #FAFDF6;
  border-radius: 30px;
}

a {
  color: #DDD92A
}

a:hover {
  color: #EEEFA8
}

a:active {
  color: #EAE151
}

h1 {
  color: #DDD92A;
}

h2 {
  color: #DDD92A;
}

nav {
  margin: 40px auto;
}

img {
  max-width: 380px;
}

blockquote {
  color: #EAE151;
  font-style: italic;
}



.side-text {
  color: #EEEFA8;
  position: fixed;
  left: 0;
  top: 30px;

  writing-mode: vertical-rl;
  text-orientation: mixed;

  font-size: 10vh;
  line-height: 1;
  white-space: nowrap;

  height: 100vh;
  display: flex;
  align-items: center;
  z-index: -1;
}
