*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    font-family: "Poppins", serif;
    background-image: url('../../../assets/images/bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.center-screen {
    min-height: 100vh;
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
}

.card {
    cursor: pointer;
    box-shadow: 0 1px 6px 0 rgb(196 49 68);
}

.floating-top-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #c43144, #d25c6a);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease;
}

.floating-top-btn:hover {
    transform: translateY(-3px) scale(1.05);
    color: white;
}

.floating-top-btn:active {
    transform: scale(0.95);
}