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

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* L'intera altezza della viewport */
    background-color: #fefefe;
    color: #0a0a0a;
    font-family: "Epilogue", sans-serif;
    text-align: center;

  }

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Testo principale */
h1 {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 900;
    transition: color 0.3s ease-in-out;
}

h2 {
    font-size: 1rem;
    font-weight: 300;
    transition: color 0.3s ease-in-out;
}

/* Stile dei link social */
.social a {
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

/* Effetto hover */
.social a:hover {
    color: #7B6BFF; /* Viola */



.epilogue-<uniquifier> {
  font-family: "Epilogue", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
}
