.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    padding: 20px;
    background-color: #fff;
    border: 2px solid #747BA9;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    text-align: center;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 480px) {
    .popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 350px;
        padding: 20px;
        background-color: #fff;
        border: 2px solid #747BA9;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 9999;
        text-align: center;
        justify-content: center;
        align-items: center;
    }

    .popup .info img {
        width: 200px;
        height: 200px;
    }
}

.popup h2 {
    color: #747BA9;
}

.popup .info {
    margin-top: 10px;
}

.popup .info img {
    width: 300px;
    height: 300px;
}

.button2 {
    background-color: #747BA9;
    border: 2px solid #747BA9;
    border-radius: 5px;
    color: white;
    padding: 8px 16px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    transition-duration: 0.4s;
    cursor: pointer;
}

.button2:hover {
    background-color: white;
    color: #747BA9;
}