{
        margin: 0;
        padding: 0;
    }


    body {
        padding-bottom: 60px;
    }

    footer {
        background-color: rgb(41, 40, 44);
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 10px 0;
        height: 60px;
        align-items: center;
        z-index: 999;
    }

    footer ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    footer li {
        margin: 0 10px;
        color: white;
    }

    footer li a {
        text-decoration: none;
        color: white;
        background-color: #FFD700;
        padding: 10px 20px;
        border-radius: 5px;
        display: flex;
        align-items: center;
        height: 100%;
    }


    .icon {
        margin-right: 5px;
    }


    .popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background-color: #fefefe;
        border: 2px solid #4CAF50;
        box-shadow: 0 4px 8px rgba(3, 248, 36, 0.925);
        padding: 20px;
        z-index: 9999;
        max-width: 90%;
        box-sizing: border-box;
    }

    .popup-content {
        text-align: center;
    }

    .center-button {
        text-align: center;
        margin-top: 20px;
    }

    .close {
        padding: 10px 20px;
        background-color: #c90505;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .close:hover {
        background-color: #45a049;
    }