body {
    font-family: Arial, Helvetica, sans-serif; 
    color: #330033;
    background-color: #fcfafc; 
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #663366;
}

li {
    float: left;
}

li a {
    display: block;
    color: #fcfafc;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

li a:hover {
    background-color:#eeaaee;
    text-decoration: underline;
}

h1 {
    padding: 1em;
    background-color: #660066;
    color: #fcfafc;
}

.formulaire {
    text-decoration: none;
    padding: 15px;
    background-color: #660066;
    border-radius: 5px;
    text-transform: uppercase;
    color: #fcfafc;
}

.form {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0; right: 0;
    bottom: 0; left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(77, 77, 77, .7);
    transition: all .4s;
}

.form:target {
    visibility: visible;
    opacity: 1;
}

.form_content {
    border-radius: 4px;
    position: relative;
    width: 500px;
    max-width: 90%;
    background: white;
    padding: 1.5em 2em;
}
  
  .form_close {
    position: absolute;
    top: 10px;
    right: 10px;
    color: #330033;
    text-decoration: none;  
}

.email {
    text-decoration: none;
    padding: 15px;
}

.enregistrer {
    float: right;
    cursor: pointer;
    text-decoration: none;
    padding: 15px;
    background-color: #660066;
    border-radius: 5px;
    text-transform: uppercase;
    color: #fcfafc;
}


a {
    color: #660066;
}