:root {
  /*Colors*/
  --polynesiumBleu: #015193;
  --asparagus: rgb(115, 164, 83);
  --roseQuartz: #ADA8B6;
  --antiFlashWhite: #F0F3F5;
  --black: #000000;
  --white: #FFFFFF;
  --ebony: #515751;

  /*Height*/
  --heroHeight: 100vh;
}

@supports (min-height: 100dvh) {
  :root {
    --heroHeight: 100dvh;
  }
}

/* Fonts */

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/Roboto-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/Roboto-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Bebas Neue';
  src: url('/fonts/BebasNeue-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}
/*Normalisation*/

*, *:before, *:after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, blockquote, pre, ul, li {
  margin: 0;
  padding: 0;
  position: relative;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  display: inline-block;
}

html {
  font-family: 'Roboto', Helvetica, sans-serif;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Helvetica, sans-serif;
  font-style: normal;
  font-weight: 400;
  background-color: var(--antiFlashWhite);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  overflow-x: hidden;
}

main {
  flex: 1;
}

section {
  padding: 42px 0;
}

.hidden {
  overflow: hidden;
}

/* Headers */

.title-two {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.title-three {
  font-size: 30px;
  text-align: center;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.title-four {
  text-align: center;
}

.title-left {
  text-align: left;
}

/* Container */

.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/* Buttons */

.btn {
  padding: 16px 30px;
  background-color: var(--asparagus);
  color: var(--white);
  border-radius: 90px;
  font-size: 16px;
  transition: 0.3s;
  text-align: center;
}

.btn:hover {
  background-color: rgba(115, 164, 83, 0.8);
  -webkit-box-shadow: 0 4px 4px 0 rgba(0,0,0,0.25);
  box-shadow: 2px 4px 4px 0 rgba(0,0,0,0.25);
}

/* For mobile view */

@media screen and (max-width: 768px) {
  .container {

  }
}