
body {
  background-image: url("../assets/backgrounds/spring-fundal-roz.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* overflow: hidden; */
  display: flex;
  justify-content: center;
  font-family:"Figtree";
}

.articole-container-elemente {
  font-family: "Figtree", sans-serif;
  text-align: center;
  width: 50vw;

}

.articole-container-planeta {
  width: 25vw;
  height: 100vh;
  display: flex;
  align-items: center;
}

.articole-container-astronaut {
  width: 25vw;
  height: 100vh;
  display: flex;
  align-items: center;
  display:flex;
  justify-content: center;
}
#articol-text {
  color: #ffffff;
  font-family: "Figtree", sans-serif;
  padding: 2rem;
  padding-top: 1rem;
  text-align: justify;
  background-color:rgba(255, 255, 255, 0.7);
  color:black;
  margin:2rem 0;
  border-radius:1.5rem;
}

#articol-text h1 {
    text-align: center;
}

#articol-text h2 {
    text-align: right;
    font-size: 20px;
}

#articol-text p{
  font-size:20px;
}

.articole-laptop {
  position: fixed;
  max-width: 20vw;
  height: auto;
  /* right: 1vw; */
  animation: float 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

#planeta {
  position: fixed;
  /* top: -14vh; */
  left: -30rem;
  width: 51rem;
  height: auto;
  z-index: -1;
}

#articole-astronaut-telefon {
 display: none;
}

#articole-inapoi {
    cursor: pointer;
    color: #272727;
    background-color:rgba(255, 255, 255, 0.7);
    border-radius:100rem;
    border: none;
    font-size: 2rem;
    margin-bottom: 3rem;
    transition: 0.2s ease;
    padding:0.35rem;
}

#articole-inapoi:hover {
  --roz: #e065a4;
    color: var(--roz);

}


@media (max-width: 800px) {
    .articole-container-planeta {
 display: none;
}

.articole-container-astronaut {
   display: none;
}

.articole-container-elemente {
  width: 95%;
}



#articol-text {
    text-align: justify;
    margin: 1.5rem 0;
    padding: 0.2rem 1rem;
}

.articole-container-buton{
    display: flex;
    flex-direction: row;
    gap: 25vw;
}
#articole-astronaut-telefon {
    display: block;
    width: 35vw;
    height: auto;
    margin-bottom: 10px;
    margin-left: 5px;
    -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

}