#listeBtn{
    font-weight: 100;
    text-decoration: underline;
    cursor: pointer;
}
#listeLien{
    position: absolute;
    top: 100vh;
    width: 90%;
    left: 50%;
    margin: 35px;
    transform: translateX(-50%);
    z-index: 2;
}
#listeBtn:hover{
    text-decoration: none;
}
.modal{
    position: fixed;
    min-width: 50%;
    color: #eee;
    background-color: #222222fa;
    left: 50%;
    transform: translateX(-50%);
    padding: 40px;
    top: 12%;
    border-radius: 35px;
    z-index: 3;
    opacity: 0;
    display: none;
    transition: .5s;
}
.modal h3{
    font-weight: 100;
}
.modal h3 a{
    color: #eee;
    text-decoration: none;
    transition: .2s;
}
.modal h3 a:hover{
    color: #aaa;
    border-bottom: thin solid #aaaaaa;
}
.modal input{
    margin-left: 40px;
    width: calc(100% - 100px);
    padding: 10px 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    -webkit-appearance: none;
    border-bottom: thin solid #eee;
    background-color: transparent;
    color: #eee;
    font-size: 1.17em;
    font-weight: 100;
    font-family: 'Roboto', Sans-serif;
}
#close-modal{
    float: right;
    cursor: pointer;
}
ul{
    list-style-type: none;
}
@media screen and (max-width: 600px) {
    #listeLien{
        position: inherit;
        transform: translateX(0);
        left: 0;
    }
    .modal{
        min-width: 80%;
        padding: 25px;
    }
    .modal ul{
        margin: 0;
        padding: 0;
    }
    .modal input{
        margin: 0;
        width: 100%;
    }
}