.section {
    min-height: 87vh;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.textPresentation
{
    width: 300px;
    color: #fff;
    font-size: 1.5em;
    margin: 0 0 0 100px;
}



.textPresentation a {
    display: flex;
    align-items: center;
    margin: 15px 0 0 0;
    width: 203px;
    text-decoration: none;
    font-size: 18px;
    color: #e1e1e1;
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    position: relative;
    border: none;
    background: none;
    text-transform: uppercase;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: color;
}

.textPresentation a svg{
    margin: 0 10px 0 0;
}

.textPresentation a:focus,
.textPresentation a:hover {
    color: #fff;
}

.textPresentation a:focus:after,
.textPresentation a:hover:after {
    width: 100%;
    left: 0%;
}

.textPresentation a:after {
    content: "";
    pointer-events: none;
    bottom: -2px;
    left: 50%;
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #fff;
    transition-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
    transition-duration: 400ms;
    transition-property: width, left;
}


@media(max-width:750px)
{
    .textPresentation
    {
        margin: 0 0 0 80px;
    }
}
@media(max-width:600px)
{
    .textPresentation
    {
        margin: 0 0 0 50px;
    }
}
@media(max-width:360px)
{
    .textPresentation
    {
        margin: 0 0 0 30px;
    }
}