body {
    font-family: 'Quicksand', sans-serif;
}

.main {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.main span {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.main div {
    margin-bottom: 20px
}

.bold {
    font-size: 1.6em;
    font-weight: bold;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}


.footer {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0%);
    margin-bottom: 20px;
}

.footer span {
    display: flex;
    flex-direction: row;
    justify-content: center;
}