/* Global Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
}

header, footer {
    background-color: #333;
    text-align: center;
    padding: 1rem;
    width: 100%;
}

section {
    padding: 20px;
    width: 100%;
    max-width: 400px; /* Adjust the maximum width as needed */
    display: flex;
    flex-direction: column;
    align-items: center;
}

footer {
    position: fixed;
    bottom: 0;
}

button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
}

button:hover {
    background-color: #45a049;
}

/* Your existing styles... */

/* Custom Scrollbar */
body::-webkit-scrollbar {
    width: 10px;
}

body::-webkit-scrollbar-thumb {
    background-color: #3498db;
    border-radius: 5px;
}

body::-webkit-scrollbar-track {
    background-color: #333;
}
