body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    background-image: url('https://media3.giphy.com/media/v1.Y2lkPTc5MGI3NjExcmVjOGJiZ2d0YXh1YjlwdDVyYWNnZjhlcmp5dmhpNmt1endsamxieCZlcD12MV9pbnRlcm5hbF9naWZfYnlfaWQmY3Q9Zw/V4NSR1NG2p0KeJJyr5/giphy.gif');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

main.container {
    margin-top: 150px;
    margin-bottom: 100px;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 2rem;
    border-radius: 1rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.homepage-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}


.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width:
}
.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
input {
    width: 80%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    font-size: 18px;
    letter-spacing: 3px;
}
button {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}
button:hover {
    background-color: #0056b3;
}

.dashboard {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    width: 95%;
}
.stats, .config, .actions {
    margin: 15px 0;
    padding: 10px;
    background: #e9ecef;
    border-radius: 5px;
}
.flag {
    margin-top: 20px;
    padding: 10px;
    background: #ffcc00;
    border-radius: 5px;
    font-weight: bold;
    font-size: 18px;
}