/* Impostazioni base per il layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #ffcc33; /* Arancione-giallo */
    color: #333;
    line-height: 1.6;
}

h1, p {
    margin-bottom: 20px;
}

/* Header - Banner */
.banner {
    width: 100%;
    text-align: center;
}

.banner-image {
    width: 100%;
    height: auto;
    max-height: 300px; /* Altezza massima per il banner */
}

/* Main Content */
.content {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

.left {
    width: 60%;
    padding-right: 20px;
}

.right {
    width: 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.token-image {
    width: 100%;
    height: auto;
    max-width: 350px; /* Limite massimo per l'immagine del token */
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
}

.footer-link {
    color: #ffcc33; /* Colore arancione-giallo */
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.footer-link:hover {
    text-decoration: underline;
}