/*
Kathryn Koehler

Stylesheet for index.html
*/

body {
  font-family: 'Montserrat', sans-serif;
  color: darkslateblue;
}

nav {
  height: 8vh;
  background-color: darkslateblue;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}

nav > a {
  text-decoration: none;
  color: white;
  font-size: larger;
  font-weight: 400;
  padding: 10px;
}

nav > a:hover {
  background-color: rgb(138, 103, 221);
  border-radius: 5px;
  transition: 1s ease;
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-top: 10vh;
}

a {
  color: transparent;
}

#about-me {
  padding: 20px;
  background-color: rgb(213, 209, 234);
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  border-radius: 5px;
  margin: 15px;
}

#about-me h1 {
  font-size: x-large;
}

#about-me img {
  height: 150px;
  width: 150px;
  border: 2px darkslateblue solid;
  border-radius: 150px;
}

#about-me #pics {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin: auto;
  width: 80%;
}

#about-me #info {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  width: 80%;
  margin: auto;
  margin-top: 15px;
}

#about-me #moi {
  margin: 15px;
  width: 50%;
}

#about-me #currently {
  border: 2px darkslateblue solid;
  border-radius: 5px;
  padding: 10px;
  font-size: small;
  width: 20%;
  margin: 15px;
}

#about-me #currently p {
  padding: 7px;
}

#tips {
  margin: auto;
  width: 60%;
  border: 2px darkslateblue solid;
  border-radius: 5px;;
  padding: 15px;
}

#tips li {
  padding: 5px;
}

#secret {
  display: none;
}

#tips:hover > #secret {
  display: block;
  font-size: large;
  font-weight: 800;
  background-image: url("img/glitter-pink.gif");
  background-size: cover;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

#pets, #books {
  width: 70%;
}

#pets > section, #books > section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 5px;
  justify-content: space-around;
}

#pets article, #books article {
  margin: 5px;
  border: 2px darkslateblue solid;
  border-radius: 5px;
  background-clip: content-box;
}

#pets img, #books img {
  height: 300px;
  border-radius: 3px;
}

#pets p, #books p {
  margin: 5px;
}

#books article {
  max-width: 197px;
}

#books img {
  width: 197px;
  object-fit:fill;
}