* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wf-sawarabimincho {
    font-family: 'Sawarabi Mincho', sans-serif;
}

body {
    background-color: bisque;
}

.title {
    /* margin: 1rem auto; */
    font-size: 2rem;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-self: center;
    padding: 0.5rem;
    background-color: blueviolet;
    color: aliceblue;
}

.navbar .menu ul {
    display: flex;
    flex-direction: row;
}

.navbar .menu ul li {
    display: block;
    padding: 0.5rem;
    color:aliceblue;
}

.footer {
    width: 100%;
    padding: 0.5rem;
    background-color: #ab47bc;
    color: white;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

a {
    text-decoration: none;
    color: white;
}

.container {
    padding: 1rem;
    margin: auto;
    width: 90%;
}


.centro {
    text-align:center;
}

.destra {
    text-align: right;
}

