* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%; /* Εξασφαλίζουμε ότι το html και το body καλύπτουν ολόκληρη την οθόνη */
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #d4c1ff, #ebe4ff); /* Gradient από το html για να καλύπτει όλο το παράθυρο */
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Εξασφαλίζουμε ότι το body καλύπτει το πλήρες ύψος */
    padding-top: 20px; /* Προσθήκη κενού στην κορυφή */
}

.container {
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.buttons-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.button {
    display: flex;
    align-items: center;
    background: linear-gradient(145deg, #fff, #f1f1f1);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    width: 100%;
}

.number {
    background-color: #6a0dad;
    color: white;
    padding: 15px;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 1.5rem;
    text-align: center;
    width: 50px;
    height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.button-content {
    text-align: left;
}

.button-content h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #333;
}

.button-content p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #777;
}

/* Hover Effects */
.button:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.15);
    border: 2px solid #6a0dad;
}

.button:hover .number {
    background-color: white;
    color: #6a0dad;
}

/* Responsive design για tablets σε portrait (κάτω από 1024px) */
@media (max-width: 1024px) {
    .buttons-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Responsive design για κινητές συσκευές (κάτω από 768px) */
@media (max-width: 768px) {
    .buttons-container {
        grid-template-columns: 1fr;
    }

    .button {
        justify-content: flex-start;
        width: 100%;
    }

    h1 {
        font-size: 2.5rem;
        padding-top: 100px;
    }
}
