/* All the styles that are in testing*/

/* iframe */
iframe.main {
    padding-top: 0px;
    display: inline-block;
    width: 100%;
    height: 500px;
    border: none;
}

/* Animating shadow */
h2.animated {
    display: inline-block;
    color: black;
    font-weight: bold;
    font-family: Roboto, sans-serif;
    /* font-size: 2em; */
    text-align: center;
    background-color: mediumaquamarine;
    border: 2px solid powderblue;
    border-radius: 15px;
    padding: 30px;
    margin: 50px;
    animation: pulse-shadow 3s infinite alternate;
}

@keyframes pulse-shadow {
    0%, 100% {
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }

    50% {
        box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    }
}

.caption {
    /* font-size: 1em; */
    font-weight: bold;
    margin-top: 2px;
    text-align: center;
    color: white;
}

.linktext {
    text-align: center;
}

.linkpadding {
    padding: 0 2px 2px 0;
}

/* List style */
ul {
    list-style-type: square;
}

.image-card:hover {
    background-color: #f0f0f0;
}

/* .responsive-img {
    width: auto;
    height: 100px;
    display: block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.responsive-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
} */

@media (max-width: 600px) {
    .responsive-img {
        width: auto;
        height: 200px;
    }

    .image-wrapper {
        max-width: 90%;
    }
}