h1 {
  font-family: casino;
  color: #f5f5f5;
  font-size: 5.6rem;
  text-align: center;
  margin: auto;
}

h2 {
  font-family: 'Times New Roman', Times, serif;
  text-align: center;
  font-size: 2rem;
}

a {
  text-decoration: none;
  color: #bebebe;
  text-shadow: 0 0 3px #bebebe;
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: inline-block;
}

a:hover{
  color: #cacaca;
  text-shadow: 0 0 5px #cacaca;
  transform: scale(1.05);
}

p{
  margin: 1rem 10rem;
  text-align: center;
  line-height: 1.7rem;
}

body {
  background-image: url("images/noir_city.png");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  overflow-x: hidden;
}

main {
  width: 60dvw;
  min-height: 100vh;
  background-color: black;
  margin: 2rem auto;
  color: #e5e5e5;
  box-shadow: 0 0 1.5rem 0.4rem #bebebe;
  overflow: auto;
  border: 2px solid #bebebe;
}

#title {
  position: relative;
  padding: 3rem 0;
  margin: 1rem;
}

#wrapper {
  height: auto;
  display: flex;
  flex-wrap: wrap;
}

.dashed{
  text-decoration: dashed;
  text-decoration-line: line-through;
}

.content {
  border: 2px solid #bebebe;
  flex: 1 0 auto;
  min-height: 15rem;
}

.blog {
  overflow: scroll;
  min-width: 40%;
}

.updates {
  overflow: scroll;
  min-width: 40%;
}

.todo {
  min-width: 30%;
}

.about {
  min-width: 55%;
}

.buttoms {
  width: 100%;
}

.chasing-lights {
  background-color: #7f7f7f;
  position: absolute;
  height: 2rem;
  width: 2rem;
  border-radius: 100%;
  animation-name: lights;
  animation-duration: 2.992s;
  animation-iteration-count: infinite;

}

@keyframes lights {
  12.5% {
    background-color: #bebebe;
    box-shadow: 0 0 2rem;
  }
}

@font-face {
  font-family: casino;
  src: url(fonts/Casino.woff2);
}

/*rain drops*/
hr#raindrop {
  width: 50px;
  border-color: transparent;
  border-right-color: rgba(255, 255, 255, 0.7);
  border-right-width: 50px;
  position: fixed;
  bottom: 100%;
  transform-origin: 100% 50%;
  animation-name: rain;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes rain {
  from {
    transform: rotate(69deg) translateX(0);
  }

  to {
    transform: rotate(69deg) translateX(calc(100vh + 10rem));
  }
}