@import url('../globals/reset.css');

body{
  background: #141414;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}

.carousel{
  background: transparent;
  margin: 1rem;
}

.carousel-cell{
  width: 50%;
  height: 400px;
  margin-right: 10px;
  background: #252525;
  border-radius: .5rem;
  counter-increment: carousel-cell;
}

.card .card__content{
  display: flex;
  height: 100%;
}

.card .card__content img{
  position: relative;
  width: 300px;
  height: 380px;
  margin: auto .5rem;
  object-fit: cover;
  border: 1px solid #ffffff55;
  border-radius: .5rem;
  filter: drop-shadow(0 0px 5px #000);
}

.card__content .card__content-info{
  display: flex;
  flex-direction: column;
  margin: 1rem;
  color: #e5e5e5;
}

.card .card__content strong{
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  max-width: 256px;
}

.card .card__content a{
  color: blueviolet;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.card .card__content span{
  text-align: justify;
  margin-right: 0.5rem;
}

@media screen and ( max-width: 960px ) {
  .carousel-cell{
    width: 80%;
  }
}