@keyframes buttonPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(114, 27, 67, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(114, 27, 67, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(114, 27, 67, 0);
    }
}

@keyframes wavePulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom right, #f8f9fa, #e9ecef);
}

.title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
}

.group {
    position: relative;
    overflow: hidden;
}

.group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.6s;
}

.group:hover::before {
    left: 100%;
}

.button-container {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    position: relative;
}

.icon-container {
    position: relative;
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.button-container button:active .icon-container,
.button-container button:hover .icon-container {
    animation: buttonPulse 1.5s infinite;
}

.wave-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(114, 27, 67, 0.2);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

.button-container:hover .wave-pulse {
    animation: wavePulse 1.5s ease-out;
}

.logo {
    width: 300px; /* Adjust as needed */
    height: auto; /* Keeps aspect ratio */
}

