#input-file, button {
    color: white;
    text-align: center;
    border-radius: 5px;
    padding: 10px;
}

/* Input file and select CSS. */
#input-file {
    height: 20%;
    background-color: #333;
}

input, select {
    background-color: rgb(84, 84, 84);
    padding: 7px;
    color: white;
    border-radius: 5px;
}

/* Button CSS. */
button {
    font-family: 'Poppins', sans-serif;
    background-color: rgb(84, 84, 84);
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: rgb(38, 41, 35);
}