* {
	margin : 0;
	padding : 0;
}

@font-face {
  font-family : 'Milasian';
  src : url('font/MilasianMediumPERSONAL.ttf') format("truetype");
}

@font-face {
  font-family : 'BKANT';
  src : url('font/BKANT.TTF') format("truetype");
}

@font-face {
  font-family : 'Christmas';
  src : url('font/Riana Star Display.ttf') format("truetype");
}

:root {
  --bg-color : rgba(177,30,49,0.8)/*rgba(219,202,195,1)*/;
  --text-color-gold : rgba(226,169,21,1);
  --text-color-gray : rgb(221,221,221);
  --longueur-1 : 615px;
}

body{
  font-family : sans-serif;
  background-image : url("images/background/bonhommedeneige.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position-y : 65%;
  background-size : 100%;
  color : var(--text-color-gold);
}

section {
  min-height : 70vh;
}

a{
  color : var(--text-color);
  text-decoration: none;
}

/*-----------------------------------SELECT-----------------------------------------*/

#language{
  border: none;
  border-radius: 5px;
  padding: 7px;
  font-size: 15px;
}

/*-----------------------------------HEADER-----------------------------------------*/

header h1{
  font-family: 'Christmas';
  text-align: center;
  font-size: 150px;
  height: 20vh;
  line-height: 20vh;
}

/*-----------------------------------FORMULAIRE-------------------------------------*/

marquee{
  margin-bottom: 10px;
  font-family: 'Milasian';
  font-size: 35px;
}

#form{
  min-height: 60vh;
  width: 70vw;
  padding: 8px;
  margin : 20px auto;
  border-radius: 20px;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color : var(--text-color-gray);
}

#form div{
  margin : auto;
}

form input, form textarea, form #button{
  border: none;
  border-radius: 5px;
  padding: 7px;
}

form input, form textarea{
  font-size: 15px;
}

#button{
  padding: 10px;
  background: rgba(0,0,0,0.5);
  background: white;
  box-shadow: 10px 5px 15px black;
  color: var(--text-color-gold);
  font-family: 'Milasian';
  font-size: 35px;
}

#button:hover{
  font-weight: bolder;
  background: rgb(240,240,240);
}

#invitHome{
  width: 70vw;
  margin : 20px auto;
  border-radius: 20px;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  color : rgb(221,221,221);
  text-align: center;
  padding: 7px;
  min-height: 10vh;
}

#invitHome p{
  padding : 8px;
  margin : auto;
}

#invitHome p:hover{
  font-weight: bolder;
}

li.error{
  width: 70vw;
  margin : 2px auto;
  padding : 5px;
  background : rgba(221,221,221,0.8);
  font-weight: bolder;
  text-align: center;
  list-style: none;
  color : black;
  border-radius: 20px;
}

/*-----------------------------------ENVOI--------------------------------------*/

#envoi{
  min-height: 60vh;
  width: 70vw;
  margin : 20px auto;
  border-radius: 20px;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  color : var(--text-color-gray);
}

#FormEnvoi{
  height: 150px;
  margin : 20px auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

img{
  height : 200px;
  margin : 10px auto;
}

a{
  margin : 10px auto;
}

/*-----------------------------------RECEVEUR--------------------------------------*/

#reception div{
  width: 70vw;
  margin : 20px auto;
  border-radius: 20px;
  background-color: var(--bg-color);
  display: flex;
  flex-direction: column;
  color : rgb(221,221,221);
  text-align: center;
}

#carte{
  min-height: 50vh;
}

#reception div p,#reception div h2{
  margin : auto;
}

#invit{
  padding: 7px;
  min-height: 10vh;
}

#invit p:hover{
  font-weight: bolder;
}

/*-----------------------------------FOOTER----------------------------------------*/

footer {
  margin-top : 50px;
	font-style : italic;
	color : var(--nav-bg-color);
  height : 50px;
	text-align : center;
  line-height : 50px;
}

/*-----------------------------------RESPONSIVE----------------------------------------*/

@media screen and (max-width : 980px){
  body{
    background-size: cover;
    background-position-x : 55%;
  }
  section{
    min-height: 30vh;
  }
  header h1{
    font-size: 50px;
  }
  img{
    height : 100px;
  }
  #envoi{
    width: 85vw;
  }
  #button:hover{
    font-weight: normal;
  }
  #invitHome{
    width: 85vw;
  }
}