body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
}

.dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.dashboard-button {
    margin: 20px;
    text-decoration: none;
    display: inline-block;

    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

#mealie-button {
    background-color: #E58325;
}

#nextcloud-button {
    background-color: #0082C9;
}

#firefly-button {
    background-color: #cd5029;
}

#firefly-logo {
    transform: scale(1.6) translateY(0.3em);
    transform-origin: center center;
  
}

.dashboard-button img {
    padding: 20px;
    width: 250px;
    height: 120px;
}

.dashboard-button:hover {
    transform: scale(1.1);
}
