@charset "utf-8";

/*
    Author: Kumie
    Date: 7/22/2025

    Filename: personal.css
    General stylesheet for my site's homepage

*/

body {
  background-color: rgb(38, 70, 83);  
  height: 100%;
  margin:0px;
  padding:0px;
}

header h1 {
  display: block;
  width: 300px;
  font-size: 30px;
  margin: auto;
  margin-bottom: 1px;
  padding: 5px 0 5px 0;
  margin-top: 10px;
  text-align: center;
  border: 3px solid rgb(42, 157, 143);
  color: rgb(231, 111, 81);
  background-color: rgb(233, 196, 106); 
  font-family: "Lucida Console", "Courier New", monospace;
}

nav {
  padding: 0;
  margin: 5px auto 10px auto;
  font-family: "Lucida Console", "Courier New", monospace;
  line-height: 40px;
}

nav ul {
  margin: 0;
  list-style-type: none;
  text-align: center;
  height: 100%;
}

nav ul li {
  margin: 1px auto 1px auto;
  display: inline-block; 
  width: 100px;
  height: 100%;
  margin-right: 20px;
}

#fifth {
  margin-right: 0;  
}

nav ul li a {
  margin: auto;
  display: block;
  text-align: center;
  text-decoration: none;
  color: rgb(42, 157, 143);
  border: 1px dashed rgb(42, 157, 143);
  width: 100%;
  padding: 20px 0 25px 0;
  line-height: 100%;
}

#first:hover {
  background-color: rgb(42, 157, 143);
  color: rgb(38, 70, 83);
  border-color: rgb(231, 111, 81);
  border-style: solid;
}

#second:hover {
  cursor: default;  
}

#third:hover {
  background-color: rgb(233, 196, 106);
  color: rgb(38, 70, 83);
  border-color: rgb(42, 157, 143);
  border-style: solid;
}

#fourth:hover {
  background-color: rgb(244, 162, 97);
  color: rgb(38, 70, 83);
  border-color: rgb(233, 196, 106); 
  border-style: solid;
}

#fifth:hover {
  background-color: rgb(231, 111, 81);
  color: rgb(38, 70, 83);
  border-color: rgb(244, 162, 97);
  border-style: solid;
}

#main {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 3px auto 20px auto;
}

#spacer {
  width: 70%;
  display: inline-block;
  
}

#storyList {
  margin-right: 0;
  height: 100%;
  min-height: 500px;
  text-align: right;
}

#storyList a {
  background-color: rgb(42, 157, 143);
  text-decoration: none;  
  display: block;
  color: rgb(38, 70, 83);
  margin-bottom: 10px;
  padding: 10px;
  border-radius: 20px 0 0 20px;
  height: 50px;
  filter: drop-shadow(8px 5px 0 rgb(231, 111, 81));
}

#storyList a p {
  margin: auto; 
  font-family: "Palatino", "Perpetua", serif;
  font-size: 18px;
}

#storyList a:hover {
  background-color: rgb(231, 111, 81);
  color: rgb(233, 196, 106);
  height: 50px;
  filter: drop-shadow(8px 8px 0 rgb(233, 196, 106));
}

#story {
  position: relative;
  margin: auto;
  margin-left: 0;
  background-color: rgb(244, 162, 97);
  width: 80%;
  height: 150%;
  min-height: 650px;
  border-radius: 0 10px 10px 10px;

  filter: drop-shadow(8px 8px 0 rgb(231, 111, 81));
}

iframe {
    border: 3px solid rgb(42, 157, 143);
  position: absolute;
  width: 100%;
  height: 100%;
  margin: 0;

}
