* {
    box-sizing: border-box;
    color: var(--black);
    font-family: Righteous;
}
body {
    font-family: sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
.container {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
h1 {
    margin-bottom: 30px;
}
.custom-file-upload {
    display: inline-block;
    padding: 16px;
    cursor: pointer;
    background-color: var(--tertiary-color);
    color: white;
    border-radius: 8px;
    margin-bottom: 16px;
}
.custom-file-upload:hover {
    background-color: var(--quaternary-color);
}
input[type="file"] {
    display: none; /* Hide the default file input */
}
button {
    background-color: #28a745;
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
}
button:hover {
    background-color: #218838;
}