﻿.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px; /* Adjust as needed */
}

    .image-container img {
        display: block;
        width: 100%;
        height: auto;
    }

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px; 
    height: 80px; 
    background-color: transparent; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.play-icon {
    width: 60px;  
    height: 60px;  
    display: flex;
    align-items: center;
    justify-content: center;
}
.zoom-btn {
    background-color: #ff0000; /* Red background */
    color: white;
    border: none;
    border-radius: 15px;
    padding: 15px 30px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    outline: none;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
    animation: zoom 2s infinite; /* Apply zoom animation */
}

    .zoom-btn:hover {
        background-color: #cc0000; /* Darker red on hover */
    }

/* Define keyframes for zoom animation */
@keyframes zoom {
    0% {
        transform: scale(1); /* Normal size */
    }

    50% {
        transform: scale(1.4); /* Scale up by 20% */
    }

    100% {
        transform: scale(1); /* Return to normal size */
    }
}

/*.triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 30px solid white;*/ /* White triangle */
/*}*/
