@charset "utf-8";

.button-div {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 5px;
    border-radius: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.green {
    background-color: #4CAF50;
}

.teal {
    background-color: #20c997;
}

.blue {
    background-color: #0d6efd;
}

.dark-blue {
    background-color: #0d6efd;
}

.background {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background-size: cover;
    background-position: center;
}

.overlay-image {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -10%);
    max-width: 50%; /* Responsive width */
    max-height: 60%;
    height: auto; /* Maintain aspect ratio */
    border: 1px solid gray;
    border-radius: 15px;
}

.fa-icons {
    line-height: 1.5;
}