html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
    background-color: #F2F2F2;
    width: 100%;
    height: 100vh;
    background: url(views/ressources/img/bg.jpg) center / cover no-repeat;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Début CSS perso */

.container-merci{
    position: absolute;
    /* border: 2px solid red; */
    width: 80%;
    height: 100vh;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.merci-title{
    width: 40%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    overflow: hidden;
}

h2{
    color: #FC8A07;
    font-size: 60px;
    font-weight: 700;
    text-align: center;
    margin-top: 10vh;
    /* position: relative;
    left: 20%; */
}

.merci-title .anim{
    width: 20px;
    height: 5px;
    border-radius: 15px;
    background-color: #5DCBF1;
    margin-top: 5px;
    position: relative;
    left : -5%;
    animation: anim-merci 1.2s ease-in-out;
    animation-iteration-count: 2;
    

}
.merci-title .anim:nth-child(3){
    animation-delay: -0.05s;
}
.merci-title .anim:nth-child(2){
    animation-delay: -0.1s;
}
@keyframes anim-merci{
    0% {
        left : -5%
    }
    100% {
        left: 105%;
    }
}


.container-merci .merci{
    color: #707070;
    font-size: 26px;
    width: 60%;
    position: relative;
    top: 20vh;
    left: 50%;
    transform: translateX(-50%);
}


.merci .p2{
    display: inline-block;
    position: relative;
    margin-top: 5vh;
    
}

.container-merci #see-you-soon{
    display: inline-block;
    position: absolute;
    top: 90vh;
    left: 50%;
    transform: translateX(-50%);
    color: #707070;
}

#see-you-soon a{
    /* text-decoration: underline; */
    color: #FC8A07;
    transition: color 0.2s ease-in-out;
}
#see-you-soon a:hover{
    /* text-decoration: none; */
    color: #e97d01;

}