body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 200px;
    height: 200px;
    text-align: center;
}
#calorie-count {
    width: 60%;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-align: center;
    margin-top: 20px;
}
#upload {
    border: none;
    outline: none;
    padding: 0;
    cursor: pointer;
    background: none;
}
#upload img {
    width: 90px;
}

#spinner {
    display: none;
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

h2 {
    text-transform: uppercase;
    font-size: 1.1em;
    margin: 0 0 10px 0;
}

p {
    font-size: 0.7em;
    margin: 0 0 10px 0;
    width: 150px;
}