body {
    margin: 0;
    padding: 0;
    height: 100vh;
    background-image: url('../photo/PixelSound365.png'); /* Δικό σου background */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    padding-top: 100px;
}

.dashboard-container {
    background: rgba(0, 0, 0, 0.6); /* Λίγο μαύρο background για να διαβάζεται το κείμενο */
    padding: 40px;
    border-radius: 10px;
    width: 400px;
    margin: auto;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 20px;
    margin-bottom: 30px;
}

.button-group a {
    display: inline-block;
    margin: 10px;
    padding: 12px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button-group a:hover {
    background-color: #45a049;
}
