body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}
h1 {
    color: #333;
}
input[type="text"] {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}
button {
    padding: 10px 15px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
}
button:hover {
    background-color: #45a049;
}
.container {
    display: flex;
    align-items: center;
    margin: 20px;
}
.container img {
    max-width: 200px;
    margin-right: 20px;
}
.container h1 {
    font-size: 50px; 
    color: #333;
}
button:last-child {
    margin-right: 0;
}
.footer a {
    margin: 0 15px;
    text-decoration: none;
    color: #1a0dab;
}
.footer a:hover {
    text-decoration: underline;
}
.footer {
    padding: 10px 20px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #f8f9fa;
    color: white;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}
.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 400px;
    border-radius: 10px;
}
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#settings-container {
    margin-top: 20px;
    text-align: center;
}
#bgColor {
    margin: 10px;
}
#bgImage {
    margin: 10px;
}