body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background-color: #1a1a1a;
  color: #e0e0e0;
}

.container {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 220px;
  background-color: #2b2b2b;
  padding: 1em;
  border-right: 2px solid #ff0055;
}

.sidebar h2 {
  color: #ff0055;
  margin-bottom: 1em;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar ul li {
  margin: 0.5em 0;
}

.sidebar ul li a {
  color: #e0e0e0;
  text-decoration: none;
}

.sidebar ul li a:hover {
  color: #ff0055;
}

.content {
  flex: 1;
  padding: 2em;
}

h1, h2 {
  color: #ff0055;
  border-bottom: 1px solid #444;
  padding-bottom: 0.3em;
}

.intro {
  font-style: italic;
  margin-bottom: 2em;
}

.post {
  background-color: #2a2a2a;
  border: 1px solid #444;
  padding: 1em;
  margin: 1em 0;
  box-shadow: 0 0 5px #ff0055;
}

footer {
  text-align: center;
  padding: 1em;
  background-color: #111;
  font-size: 0.9em;
  border-top: 1px solid #444;
}
#loader-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1a1a1a;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeOut 0.5s ease-in-out 1.3s forwards;
}
@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
.loader {
  position: relative;
  width: 120px;
  height: 90px;
  margin: 0 auto;
}

.loader:before {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background: #2a9d8f;
  animation: loading-bounce 0.5s ease-in-out infinite alternate;
}

.loader:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 7px;
  width: 45px;
  border-radius: 4px;
  box-shadow: 0 5px 0 #f2f2f2, -35px 50px 0 #f2f2f2, -70px 95px 0 #f2f2f2;
  animation: loading-step 1s ease-in-out infinite;
}

@keyframes loading-bounce {
  0% {
    transform: scale(1, 0.7);
  }

  40% {
    transform: scale(0.8, 1.2);
  }

  60% {
    transform: scale(1, 1);
  }

  100% {
    bottom: 140px;
  }
}

@keyframes loading-step {
  0% {
    box-shadow: 0 10px 0 rgba(0, 0, 0, 0),
                0 10px 0 #f2f2f2,
                -35px 50px 0 #f2f2f2,
                -70px 90px 0 #f2f2f2;
  }

  100% {
    box-shadow: 0 10px 0 #f2f2f2,
                -35px 50px 0 #f2f2f2,
                -70px 90px 0 #f2f2f2,
                -70px 90px 0 rgba(0, 0, 0, 0);
  }
}
.card-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-top: 2em;
  gap: 1em;
}
.card {
  width: 300px;
  height: 200px;
  perspective: 1000px;
}

.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.999s;
}

.card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-align: center;
  padding: 1em;
}

.card-front {
  background-color: #6A2C70;
  color: #fff;
  border: 10px solid #6A2C70;
  transform: rotateY(0deg);
  cursor: pointer;
}

.card-back {
  background-color: #F08A5D;
  color: #fff;
  border: 10px solid #F08A5D;
  transform: rotateY(180deg);
}
.evolink-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.evolink-img {
  width: 80px;
  height: 80px;
  border: 3px solid #fff;
  border-radius: 10px;
  margin-bottom: 0.5em;
}

.evolink-title {
  font-size: 26px;
  font-weight: bold;
  color: #fff;
  text-shadow: 0 0 5px #000;
}
