/* Reset minimale */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    background-color: #fff;
    font-family: 'Open Sans', sans-serif;
    color: #000;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 15px;
    max-height: 100dvh;
    overflow: hidden;
}

.brand h1 {
    font-size: 3rem;
    font-weight: bold;
}

.email a {
    color: #0978BC;
    font-size: 1.25rem;
    text-decoration: none;
}

.email a:hover {
    text-decoration: underline;
}

footer {
    height: 40px;
    background-color: #0978BC;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    flex-shrink: 0;
}

.marchio {
    width: 60vw;
    max-width: 85vw;
}

@media screen and (max-width: 700px) {
    .marchio {
        width: 95vw;
        max-width: 95vw;
    }
}

.DM {
    text-decoration: none;
    color: unset;
}

.DM:hover {
    text-decoration: none;
    color: red;
    font-weight: 600;
}
