@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@300&family=Open+Sans&display=swap');

body {
    margin: 0;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Mukta', sans-serif;
    font-family: 'Open Sans', sans-serif;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.center-image {
    max-width: 90%;
    max-height: 80vh;   /* massimo 80% dell’altezza visibile */
    height: auto;
    margin-bottom: 20px;
    object-fit: contain;
}


.button-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
}

.btn-registrati {
    background-color: red;
    color: white;
    padding: 20px 40px;     /* più grande: verticale x orizzontale */
    text-decoration: none;
    border-radius: 30px;
    font-size: 24px;        /* testo più grande */
    transition: background-color 0.3s ease;
}

.btn-registrati:hover {
    background-color: darkred;
}
