head{
}
body{
  background:linear-gradient(to right,#1e1e1e, #3a3a3a);
  color: #f4f0f9;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-style: italic;
  h1,h2,h4{
    color: rgba(243, 231, 8, 0);
    text-align: center;
  }
  h1 {
    font-size: 80px;
    text-shadow: 1px 1px 1px white;;
  }
  
  h2 {
    font-size: 50px;
    text-shadow: 1px 1px 1px white;
  }
  
  h4 {
    font-size: 30px;
    text-align: left;
    margin-bottom: 0px;
  }
  button{
    border-radius: 19px;
    background-color: #0ee4cf;
    color: #fcf9f9;
    padding: 10px 20px;
    border: none;
    font-size: 16px;
    cursor: pointer;
  }
 
    button:hover{
    background-color: #f99109;
    color:#faf5e6;
    font-size: 18px;
    transition: 0.3s ease-in-out;
  }
  b{
    color: #fffdfd;
    font-size: 20px;
    
  }
  b:hover{
    color:#09eef2cd;
    font-size: 18px;
    text-align:center;
    text-decoration: underline;
    text-underline-offset: 1px;

  }
.list{
    padding: 20px;
    text-align: :left;
    margin-top: 0px;
}
h3{
  font-size: 30px;
  color: #CD7F32;
  font-family:'Playfair Display',serif;
  font-style:'italic';
  text-align: center;
}
}
.Video_container{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.Video_container video{
    width: 400px;
    height: 400px;
}
.discription{
    display: flex;
    justify-content: center;
    gap: 40px;
    color: #0d0d0c;
}
.discription p{
    width: 400px;
    height: 30px;
    color:rgb(232, 232, 224);
}
.Anime {
  text-align: center;
  margin-bottom: 50px;
}
.anime-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.anime-item {
  width: 400px;
  text-align: center;
  
}
.anime-item img {
  width: 100%;
  height: auto;
}
.anime-item p {
  margin-top: 10px;
}
.anime-item .button {
  margin-top: 10px;
}
a {
  color: #f60404;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease-in-out;
  animation: flicker 1.5s infinite alternate;
 
  
}

a:hover {
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: scale(1.2);
  text-shadow: 0 0 5px #eeff00, 0 0 10px #ff7300, 0 0 20px #faa82d;
  transform: rotate(-deg) scale(1.1);
  
}
.media-container{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap:wrap;
}
.flip-container{
  perspective: 1000px;
  width: 400px;
  height: 400px;
  margin: 10px;
  display: inline-block;
}

.flip-box{
  width:100%;
  height:100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.flip-box:hover{
  transform: rotateY(180deg);
}
.front, .back{
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.front img, .back img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.back{
  transform: rotateY(180deg);
  pointer-events: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
.back video{
  width:100%;
  height:auto;
  object-fit: cover;
}