html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    overflow: hidden;
    cursor: default;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #8099BE;
    text-align: center;
    font-family: 'Avenir', 'sans-serif';
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

a {
    font-family: 'Avenir', 'sans-serif';
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

#content {
    display: flex;
    flex-direction: column;
}

#logo {
    position: relative;
    text-align: left;
    top: 3em;
}

#logo > svg {
    width: 15rem;
}

#description-greeting,
#description,
#description-b,
#mail-link {
    text-align: left;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

#description-greeting {
    margin-top: 4rem;
}

#description {
    width: 100%;
    max-width: 20em;
}

#description-b {
    margin-top: 1em;
}

#links-container {
    display: flex;
    width: 100%;
    max-width: 11em;
    justify-content: space-between;
    margin-top: 3rem;
}

#mail-link {
    text-decoration: none;
    margin-top: 2em;
}

a:hover > svg > path {
    fill: black;
}

.circle {
    display: none;
}

@media (min-width: 601px) {
    html, body {
        cursor: none;
    }

    #mail-link:hover,
    a:hover {
        cursor: none;
    }

    .circle {
        display: inline-block;
        height: 24px;
        width: 24px;
        border-radius: 24px;
        background-color: black;
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: -1;
    }
    .hide-cursor {
        display: none;
    }
}
