*,
*::after,
*::before {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/smile_bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  filter: blur(4px);
  z-index: -1;
}

section{
  padding: 70px 0;
  height: 100vh;
}
/* ================================================================ POLICES =============================================================== */


@font-face {
  font-family: 'BowlbyOne';
  src: url('polices/BowlbyOne-Regular.ttf') format('truetype');
}

@font-face {
  font-family:'Satoshi';
  src: url('polices/Satoshi-Medium.woff') format('woff');
}

@font-face {
  font-family: 'Rubik';
  src: url('polices/RubikGlitch-Regular.ttf') format('truetype');
}


/* ================================================================ FORMULAIRE =============================================================== */

form {
  background: rgba(0, 0, 0, 0.596);
  box-shadow: 0 4px 30px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border: 1px solid #ffffff;
  color: #ffffff;
  border-radius: 10px;
  padding: 80px;
  width: 45%;
  margin: 60px auto 30px;
  
}


form p {
  font-family: 'Satoshi', sans-serif;
  font-weight:bold;
  color: rgb(166, 2, 2);
}


h2 {
  font-size: 30px;
  font-family: 'BowlbyOne','sans-serif' ;
}

input {
  width: 100%;
  box-sizing: border-box;
  height: 40px;
  color: rgb(0, 0, 0);
  font-family: 'Satoshi', sans-serif;
  margin-top: 5px;
  margin-bottom: 10px;
  border-radius: 5px;
  padding: 0 10px;
}

label {
  font-family: 'Satoshi', sans-serif;

}

.rsv-bt {
  border: none;
  background-color: #ffffff;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 5px;
  color: rgb(0, 0, 0);
  margin-top: 20px;
  cursor: pointer;
}

.rsv-bt:hover {
  font-size: 1.3rem;
  background-color: rgb(104, 104, 104);
}
