html,
body {
    margin: 0;
    height: 100%;
}

body {
    background-color: #fff;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.VentilatieStoef-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    margin: auto 0;
}

.VentilatieStoef-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: #000;
    margin: 0 0 0.6rem;
}

.VentilatieStoef-tagline {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 2rem;
}

.VentilatieStoef-body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin: 0 0 2.5rem;
}

.VentilatieStoef-mailto {
    position: relative;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 2px;
    font-size: 12px;
    margin-bottom: 20px;
}

.VentilatieStoef-mailto:before {
    content: '';
    position: absolute;
    left: 2%;
    bottom: -6px;
    width: 96%;
    height: 1px;
    background-color: #000;
    transition: transform .5s, opacity .5s;
}

.VentilatieStoef-mailto:hover:before {
    transform: translateX(100%);
    opacity: 0;
}
