.App {
  text-align: center;
}
html {
  background-color: #212529;
}
body {
  background-color: #212529 !important;
}
.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

video[poster] {
  object-fit: fill;
}
video {
  width: 15em;
  height: 28em;
}
iframe {
  width: 15em;
  height: 20em;
}
.card2{
    display: grid; 
    justify-content: center
}
.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

.responsive-iframe {
        width: 60%; /* Adjust the width as necessary */
        margin: 0 auto; /* Centers the iframe horizontally in the container */
        position: relative;
        padding-top: 56.25%; /* 16:9 Aspect Ratio, adjust as needed */
    }
    .responsive-iframe iframe {
        position: absolute;
        top: 10;
        left: 0;
        width: 110%;
        height: 85%;
    }

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@media only screen and (max-width: 320px) {
  video {
    width: 15em;
    height: 30em;
  }
  iframe {
    width: 15em;
    height: 28em;
  }
}
@media only screen and (max-width: 700px) and (min-width: 321px) {
  video {
    width: 18em;
    height: 30em;
  }
  iframe {
    width: 18em;
    height: 28em;
  }
}
