.video-container {
    width: 100%;
    max-width: 560px;
}

/* Style the iframe to fit within the container */
.video-container iframe {
    width: 100%;
    height: 315px;
    border: none;
}

/* Style for the play button */
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    /* background: rgba(0, 0, 0, 0.6); */
    background: red;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

/* Icon inside the play button */
.play-icon::before {
    content: '►';
    font-size: 24px;
    color: white;
}

a.blink {
    animation: blink-animation 1s ease-in-out infinite;
    text-decoration: none;
    color: #243577;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    border: 1px solid;
    width: auto !important;
    padding: 5px 10px;
    border-radius: 15px;
}

@keyframes blink-animation {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}


.mobile-link{
    display: none;
}

.desktop-link{
    display: inline-block;
}

a.blink.for-mobile {
    margin-top: 15px;
    display: none;
}

.mcq-content{
    position: relative;
}