body {
  color: white;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  background-image: url(../imagens/fundo.png);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 100%;
  overflow: auto;
  padding: 0;
  background-size: cover;
  animation-duration: 2s;
  animation: fadein 2s;
  }
  
  @keyframes slidein {
    from {
      margin-left: 100%;
      width: 150%;
    }
  
    to {
      margin-left: 0%;
      width: 100%;
    }
  }
  

#area-cabecalho {
  height: 10vh;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: space-between;
}

#area-logo {
  display: flex;
  justify-content: left;
  padding: 5px;

  a {
    height: 100%;
    display: inline-flex;
    width: 150px;
  }

  img {
    height: 100%;
  }
}

#cor1 {
  color: rgb(40, 1, 57);
}


#area-menu {
  padding: 10px;
}

#area-menu {
  font-size: 20px;
  display: flex;
  justify-content: left;
}

#area-principal {
  width: 920px;
  margin: 0 auto;
}

#imagem-inicial,
#imagem-inicial-amor,
#imagem-inicial-entretenimento,
#imagem-inicial-eventos,
#imagem-inicial-mapa-astral,
#imagem-inicial-quizes,
#imagem-inicial-arquetipos,
#imagem-inicial-celebridade,
#imagem-inicial-personagem,
#imagem-inicial-musica,
#imagem-inicial-caracteristica,
#imagem-inicial-compatibilidade,
#imagem-playlist{
  justify-self: center;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.25, 0.1, 0.25, 1);
}

#area-postagens {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: justify;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0);
}

.postagem {
  color: rgb(255, 255, 255);
  padding: 20px;
  margin-bottom: 20px;
}

.direcionamento {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;

  &>div {
    flex: 1 0 50%;
  }
}

.leia {
  padding: 5px;
  font: italic;
  font-size: xx-large;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  color: lightblue;
  transition: font-size 0.2s;
}

.leia:hover {
  font-size: 36px;
}

#area-menu>a,
#area-menu>a:link,
#area-menu>a:visited {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.5s;
  color: #FFF;
  padding: 8px 12px;
  
}

#area-menu>a:hover {
  color: #5f00f7;
  background-color: #ffffff;
}

h1,
h5,
h2 {
  color: rgb(111, 198, 255);
  font-size: 2.5em;
}


h4 {
  color: rgb(255, 255, 255);
}
.branco {
  color: rgb(255, 255, 255);
}

#menu {
  width: 240px;
  float: right;
  color: rgb(62, 5, 87);
  line-height: 2;
  margin: 0 auto;
}

.colunas {
  justify-content: space-between;
}

.signos-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}

.signos-container>div {
  margin-bottom: 20px;
}


#leia-mais {
  display: none;
}

#leiamaisbotao {
  visibility: hidden;
}

#leiamaisbotao:checked~#leia-mais {
  display: block
}


#fixed-comments {
  max-height: 300px;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 10px;
  background-color: #f9f9f900;
  margin-bottom: 20px;
}

.comment {
  padding: 10px;
  border-bottom: 2px solid #ddd;
}

#new-comment {
  display: flex;
  flex-direction: column;
}

#comment-input {
  padding: 10px;
  margin-bottom: 10px;
  border: 2px solid #ccc;
}

#submit-comment {
  padding: 10px;
  background-color: #6200ea;
  color: white;
  border: none;
  cursor: pointer;
}

#submit-comment:hover {
  background-color: #4500b2;
}

.tarot-container {
  display: flex;
  justify-content: space-around;
  margin-top: 50px;
}

.tarot-card {
  position: relative;
  width: 150px;
  height: 250px;
  cursor: pointer;
  perspective: 1000px;
}

.front, .back {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #000;
}

.front {
  background-color: #fff;
}

.back {
  background-color: #eee;
  color: #000;
  transform: rotateY(180deg);
  padding: 20px;
  box-sizing: border-box;
}

.tarot-card.flipped .front {
  transform: rotateY(180deg);
}

.tarot-card.flipped .back {
  transform: rotateY(0);
}

.tarot-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.tarot-card {
  width: 150px;
  height: 250px;
  perspective: 1000px;
  cursor: pointer;
}

.tarot-card img {
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.tarot-card.flipped img {
  transform: rotateY(180deg);
}


.calendar-container {
  text-align: center;
  padding: 20px;
  border-radius: 10px;
  background-color: rgb(40, 1, 57);
  width: 90%;
  max-width: 1200px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.day-box {
  background-color: #252B64;
  border-radius: 10px;
  padding: 10px;
  color: #FFF;
  position: relative;
  text-align: center;
}

.date {
  background-color: #1F40FF;
  border-radius: 10px;
  padding: 5px;
  font-weight: bold;
  color: #FFF;
}

.event img {
  max-width: 100%;
  height: auto;
  margin-top: 10px;
}

.event p {
  margin: 10px 0 0 0;
  font-size: 14px;
}

.day-box:nth-child(odd) .date {
  background-color: #FFA500;
}

.containercalendario {
  display: flex;
  align-items: center;
  font-size: 24px;
}

.text {
  margin-left: 20px;
}

.centralizar {
  text-align: center;
}

.destaque {
  color: lightblue;
}

.centralizar-links {
  text-align: center;
}

@keyframes fadein {
  from {
      opacity: 0.3;
  }

  to {
      opacity: 1;
  }

  /* Padrão */
}

@-moz-keyframes fadein {
  from {
      opacity: 0.3;
  }

  to {
      opacity: 1;
  }

  /* Firefox */
}

@-webkit-keyframes fadein {
  from {
      opacity: 0.3;
  }

  to {
      opacity: 1;
  }

  /* Webkit */
}

@-ms-keyframes fadein {
  from {
      opacity: 0.3;
  }

  to {
      opacity: 1;
  }

  /* IE */
}

@keyframes fadeout {
  from {
      opacity: 1;
  }

  to {
      opacity: 0.3;
  }

  /* Padrão */
}

@-moz-keyframes fadeout {
  from {
      opacity: 1;
  }

  to {
      opacity: 0.3;
  }

  /* Firefox */
}

@-webkit-keyframes fadeout {
  from {
      opacity: 1;
  }

  to {
      opacity: 0.3;
  }

  /* Webkit */
}

@-ms-keyframes fadeout {
  from {
      opacity: 1;
  }

  to {
      opacity: 0.3;
  }

  /* IE */
}

#leia {
  color: rgb(245, 245, 245);
  padding: 0px;
  top: 50%;
  left: 50%;
  font: italic;
  font-size: xx-large;
  text-align: center;
}

#leia {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  color: lightblue;  
}


#leia {
  transition: transform .2s;
}

#leia:hover {
  -ms-transform: scale(2.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.2); 
  z-index: 9;
}