body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
    padding: 50px;
    margin: 0;
}

.container {
    background-color: #fff;
    border-radius: 10px;
    padding: 20px;
    display: inline-block;
    margin-top: 50px;
}

h1 {
    font-size: 2.5em;
    color: #2c3e50;
}

.links {
    display: flex;
    justify-content: center;
    margin: 20px; /* Space between buttons */
    margin-top: 20px;
}

.link-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    color: #fff;
    background-color: #47454a;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    border: none;
    font-size: 16px;
    cursor: pointer;
    flex: 1;
    text-align: center;
    margin: 5px;
}

.link-1 img {
    width: 30px; /* Adjust size as needed */
    height: 30px; /* Adjust size as needed */
    margin-right: 10px; /* Space between image and text */
}

.support-me-button {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 5px 10px;
    background-color: #ff5e5b;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.support-me-button img {
    width: 35px;
    height: 35px;
    margin-right: 8px;
}

.link-1:hover {
    background-color: #0086fe;
}
