@keyframes wobble {
  0% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(10deg);
  }
}

.spin>img {
  transition: 0.3s transform ease;
}

.spin:hover>img {
  transform: rotateY(180deg);
}

html {
  background-image: url("media/star-03.png");
  background-size: unset;
  background-repeat: repeat;
  /* background-color: #81718a; */
}

body {
  margin: auto;
  justify-content: center;
  flex-direction: row;
}

main {
  background-color: #403347;
  max-width: 800px;
  padding: 0 40px 10px 40px;
  border-radius: 0 0 50px 50px;
  flex-direction: column;
  box-shadow: #5f2d2d 0 0 10px;
  align-items: start;
}

nav {
  background-color: #27212b;
  margin: 150px 0 50px 0;
  padding: 20px;
  border-radius: 20px 0px 0px 20px;
  min-width: 130px;
  box-shadow: #5f2d2d 0 0 5px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.navheader {
  font-weight: bold;
}

.naventry {
  background-color: #85778C;
  border-radius: 3px;
  padding: 10px 20px;
  display: flex;
  flex-direction: column;
}

.navlink {}

a:link {
  color: #780318;
}

a:visited {
  color: #780318;
}

a:active {
  color: #780318;
}

.bubbl {
  background-color: #85778C;
  border-radius: 25px;
  padding: 15px 25px;
  margin-bottom: 30px;
}

.note-title {
  font-weight: bold;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

p {
  margin: 0;
}
