body {
    font-family: 'Arial', sans-serif;
    color: #666;
}
h1, h2, h3 {
    font-style: italic;
}
nav a {
    color: #FF0000;
    text-decoration: none;
    margin-right: 15px;
}
.main {
    max-width: 1200px;
    margin: 0 auto;
}
#header img {
    width: 100%;
}
.column {
    display: flex;
    flex-direction: column;
}
.row {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
#footer {
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
}
.file-upload {
    text-align: center;
    margin: 20px 0;
    padding: 15px;
    border: 1px dashed #ccc;
    border-radius: 5px;
}
.button {
    display: inline-block;
    width: 128px;
    height: 128px;
    background-color: #FF0000;
    color: white;
    text-align: center;
    line-height: 128px; /* Center text vertically */
    border-radius: 10px;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #cc0000; /* Darker red on hover */
}
