body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-image: url('../photo/PixelSound365.png'); /* ΦΑΚΕΛΟΣ photo */
    background-size: contain; /* ΠΡΟΣΟΧΗ: contain για να φαίνεται όλη η εικόνα */
    background-repeat: no-repeat;
    background-position: top center; /* Βάζουμε το background να ξεκινάει από πάνω */
    background-color: black; /* Αν περισσεύει χώρος, μαύρο */
    color: white;
    text-align: center;
    min-height: 100vh; /* Να καλύπτει όλο το ύψος */
}

.welcome-container {
    background-color: rgba(0, 0, 0, 0.7); /* μαύρο φόντο με λίγη διαφάνεια */
    padding: 40px;
    margin: 0 auto; /* Κέντρο */
    width: 80%;
    border-radius: 10px;
    margin-top: 250px; /* Κατεβάζουμε το κείμενο λίγο πιο κάτω */
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: gold;
}

/* Τα κουμπιά */
.button-group {
    margin-top: 30px;
    margin-bottom: 50px; /* Απόσταση από το κείμενο */
}

.button-group a {
    display: inline-block;
    margin: 10px;
    padding: 15px 30px;
    background-color: gold;
    color: white;
    font-size: 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.button-group a:hover {
    background-color: goldenrod;
}

p {
    font-size: 24px;
    margin-bottom: 20px;
}

.about {
    font-size: 18px;
    text-align: justify;
    margin-bottom: 40px;
    line-height: 1.6;
}
