 html {
     scroll-behavior: smooth;
 }

 body {
     margin: 0;
     color: white;
     font-family: 'Poppins', sans-serif;
     background-color: rgb(10, 10, 10);
 }

 .card-container {
     height: 375px;
     width: 265px;

     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;

     perspective: 1000px
 }

 .card-container img {
     height: 100%;
     width: 100%;
     border-radius: 20px;

     transition: transform 0.4s ease, box-shadow 0.4s ease;
     transform-style: preserve-3d
 }

 .card-container:hover img {
     transform: rotateY(10deg) rotateX(5deg);
     box-shadow: 0 20px 30px rgba(10, 10, 10, 0.6);
     cursor: pointer;
 }

 a {
     text-decoration: none;
     color: white;
 }

 .display-none {
     display: none !important;
 }

 .card-editions {
     height: 275px;
     width: 550px;
     background-color: rgb(10, 10, 10);
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-direction: column;

     font-size: 16px !important;
     gap: 12px !important;
     font-weight: 700 !important;
     color: rgb(235, 235, 235) !important;

     filter: drop-shadow(0px 10px 50px rgb(10, 10, 10));
     transition: transform 0.4s ease, box-shadow 0.4s ease;
 }

 .card-editions:hover {
     transform: scale(1.1);
 }

 .card-editions-logo {
     height: 75px;
     margin-top: 20px;
 }