body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    background-color: #f8f8f8;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 100;
}

.site-title {
    padding-left: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.language-selector {
    padding-right: 20px;
    position: relative;
    cursor: pointer;
    font-size: 16px;
    padding: 5px;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border: 1px solid #ddd;
    min-width: 80px;
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 8px 12px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f0f0f0;
}

.language-selector:hover .dropdown-content {
    display: block;
}

main {
    padding: 80px 20px 40px;
    max-width: 600px;
}

.content-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 20px;
}

.column {
    margin: 0 20px;
    flex: 1;
}

.hidden-on-mobile {
    display: none; /* Nasconde l'elemento */
}

@media (min-width: 768px) {
    .hidden-on-mobile {
        display: block; /* Mostra l'elemento su schermi più grandi */
    }
}

.icon, .screenshot {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.icon { max-width: 40%; }
.screenshot { max-width: 80%; }
.play-store-badge { max-width: 60%; margin-bottom: 20px; }

.link {
    display: block;
    margin: 10px 0;
    color: black;
    text-decoration: none;
}

.link:hover { color: rgb(63, 63, 63); }

#email{
    margin-top: 0;
}

footer {
    width: 100%;
    background-color: #f8f8f8;
    padding: 10px 0; /* Reduced padding for a tighter look */
    text-align: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

footer p {
    margin: 0; /* Remove default margin for a more compact layout */
}

footer a {
    color: black;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline; /* Underline on hover for better UX */
}
