* { margin:0;
    padding:0;
    box-sizing:border-box; 
}

@font-face {
  font-family: 'UntitledSansWeb-Regular';
  src: url('../lettres/USW-Reg.eot');
  src: url('../lettres/USW-Reg.woff2') format('woff2'),
       url('../lettres/USW-Reg.woff') format('woff');
}

body {
    background: rgb(253,254,252);
    color: rgb(5,4,3);
    font-size: 18px;
    font-family: 'UntitledSansWeb-Regular', sans-serif;
    line-height: 135%;
}

main {
    margin: 2em 4em 4em;
}

.hideandseek {
    position: fixed;
    overflow: hidden;
    width: 12.5em;
    height: 3.25em; 
    top: 1em;
    left: 3em;
    z-index: -1;
}

#slide {
    position: absolute;
    left: -12.5em;
    width: 12.5em;
    height: 3.25em;
    -webkit-animation: slide 0.5s forwards;
    -webkit-animation-delay: 2s;
    animation: slide 0.5s forwards;
    animation-delay: 2s;
}

@-webkit-keyframes slide {100% { left: 0; }}
@keyframes slide {100% { left: 0; }}

h1 {
    margin-bottom: 3em;
}

#info {
    float: left;
    margin-right: 8%;
    margin-bottom: 2em;
    width: 40%;
}

ul {
    float: left
    list-style: none;
}

li:hover::before {
    content: '→';
    color: rgb(144,19,254);
}

p {
    margin-bottom: 1em;
}

a {
    color: inherit;
    border-bottom: 1.5px solid;
    text-decoration: none;
}

a:hover {
    color: rgb(144,19,254);
    transition: color .5s;
    -webkit-transition: color .5s;
    transition-timing-function: ease-out;
}


@media only screen and (min-width: 977px) and (max-width: 1250px) {
    #info {
        width: 50%;
    }
}

@media only screen and (min-width: 700px) and (max-width: 976px) {
    #info {
        float: none;
        width: 80%;
    }
    ul {
        float: none;
    }
    li {
        margin-bottom: 1em;
    }
}

@media only screen and (min-width: 30px) and (max-width: 699px) {
    #info {
        float: none;
        width: 90%;
    }
    ul {
        float: none;
    }
    li {
        margin-bottom: 1em;
    }
}

@media only screen and (min-width: 600px) and (max-width: 699px) {
    body {
        font-size: 16px;
    }
    #info {
        float: none;
        width: 100%;
    }
    ul {
        float: none;
        line-height: 200%;
    }
}

@media only screen and (min-width: 450px) and (max-width: 599px) {
    body {
        font-size: 16px;
    }
    main {
        margin: 1em 2em 4em;
    }
    .hideandseek {
        top: 0;
        left: 1em;
    }
    #info {
        float: none;
        width: 100%;
    }
    ul {
        float: none;
    }
    li {
        margin-bottom: 1em;
    }
}

@media only screen and (min-width: 30px) and (max-width: 449px) {
    body {
        font-size: 16px;
    }
    main {
        margin: 1em 1em 4em;
    }
    .hideandseek {
        top: 0;
        left: 1em;
    }
    #info {
        float: none;
        width: 100%;
    }
    ul {
        float: none;
    }
    li {
        margin-bottom: 2em;
    }
}

.clearfix:after { 
	content: "."; 
	visibility: hidden; 
	display: block; 
	height: 0; 
	clear: both;
}