/* Reset e stili di base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "DM Sans", sans-serif;
    background: #001F3F; /* Navy Blue */
    color: #D3D3D3; /* Light Gray */
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
}

/* Contenitore principale */
.container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
    width: 300px;
}

/* Titolo */
h1 {
    font-family: "DM Serif Text", serif;
    font-size: 28px;
    font-weight: normal;
    color: #FFDAB9; /* Peach */
    margin-bottom: 10px;
}

/* Stile dei link */
.link {
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
    color: #D3D3D3; /* Light Gray */
    transition: color 0.3s ease, transform 0.2s ease;
    padding: 10px 0;
}

/* Effetti al tocco e focus per i link */
.link:active, .link:focus {
    transform: scale(1.05);
}

.mastodon:active, .mastodon:focus { color: #008080; } /* Teal */
.pixelfed:active, .pixelfed:focus { color: #FF6F61; } /* Coral Pink */
.instagram:active, .instagram:focus { color: #FFDAB9; } /* Peach */

/* Responsività per schermi più larghi */
@media (min-width: 600px) {
    .container {
        width: 400px;
    }

    h1 {
        font-size: 32px;
    }

    .link {
        font-size: 20px;
    }
}
