nav.menu a:link {
    color: rgb(0, 0, 0);
}

nav.menu a:visited {
    color: rgb(0, 0, 0);
}

nav.menu a:hover {
    color: rgb(255, 0, 0);
}

nav.menu a {
    text-decoration: underline;
}

@font-face {
    font-family: 'SuperBrigade';
    src: url('/public/assets/fonts/SuperBrigade.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CascadiaCode-Regular';
    src: url('/public/assets/fonts/CascadiaCode-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'CascadiaCode-Bold';
    src: url('/public/assets/fonts/CascadiaCode-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.custom-text {
    font-family: 'SuperBrigade', sans-serif;
    font-size: 1.875em;
}

.font-cascadia {
    font-family: 'CascadiaCode-Regular', sans-serif;
}

.font-cascadia-bold {
    font-family: 'CascadiaCode-Bold', sans-serif;
}

.menu {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    text-decoration: none;
    font-size: 1.5em;
    font-family: 'CascadiaCode-Regular', sans-serif;
    color: black;
}

.copyright {
    width: 100%;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    bottom: 0;
    left: 0;
    text-decoration: none;
    font-size: 1em;
    font-family: 'CascadiaCode-Regular', sans-serif;
    color: black;
}

.container { /* main */
    width: 1200px;
    margin: 50px auto 0px;
    /* padding: 5px; */
    background: #d5e3ff; 
    border: 4px solid #76638c;
    border-radius: 20px;
   /* box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.7); */

    display: flex;
    justify-content: space-between; /* distribuisce i 3 blocchi */
    align-items: flex-start;
/*    padding: 10px; */
    box-sizing: border-box;
}

.container2 { /* contenuto centrale */
    box-sizing: border-box;
/*    max-width: 700px; */
    width: 700px;
    margin: 10px auto 10px;
    padding: 20px; 
    background: #e5f4ff;
    border: 2px solid #8f98ab;
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.7);
}

.container3 { /* sidebar */
    box-sizing: border-box;
    /* max-width: 300px; */
    width: 250px;
    margin: 10px 10px 10px 10px;
    padding: 20px; 
    background: #e5f4ff;
    border: 2px solid #8f98ab;
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.7);
}

.immagine {
    display: block;
    margin: 20px auto;
    width: 300px;
    height: auto;
}

body {
    background-color: #cdadf1;
}        