/* Currency Float Button Styles */
.currency-float {
    position: relative;
}
.currency-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #f6f6f6;
    color: rgb(14, 14, 14);
    border: none;
    border-radius: 50%;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    animation: pulse_2 2s infinite;
}
.currency-btn:hover {
    background-color: #343a40;
    color: white;
    transform: scale(1.1);
}

/* Pulse Animation */
@keyframes pulse_2 {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(254, 255, 254, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(253, 253, 253, 0);
    }
}

body {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    background-color: black;
}

h2 {
    color: white;
}

footer {
    background-image: url('../../assets/img/banners/banner_3_685831c45e4c5.webp');
    background-size: cover;
    background-position: unset;
    background-repeat: no-repeat;   
}