body {
    font-family: "Funnel Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    /* background-color: #F9FDFE; */
}

svg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

a,
a:hover {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 900;
    font-size: 1rem;
    margin-top: 0.6rem;
    margin-bottom: 0.3rem;
}

.article {
    width: 100%;
    height: 100dvh;
    display: flex;
    flex-direction: column;
}


.header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: clamp(1rem, 10vw, 3.6rem);
}

.header .logo-label {
    margin: 0;
}

.main {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 100;
}

.name-main {
    opacity: 0;
    transform: scale(5);
}

.footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* justify-content: flex-start; */
    padding: clamp(1rem, 10vw, 3.6rem);
}

@media (min-width:641px) {
    .footer {
        align-items: flex-end;
        justify-content: space-between;
        flex-direction: row;
    }

    .footer .contact-wrapper {
        text-align: right;
    }
}