*,
*::before,
*::after {
  margin: 0;
  padding: 0;
}

/* Fonts  */
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@100;200;300;400;500;600;700;800;900&display=swap");

html {
  box-sizing: border-box;
  cursor: default;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  font-family: "Kanit", Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  width: 100%;
  height: 100vh;
  background-image: url("./ressources/pexels-johannes-plenio-1445324.jpg");
  background-position: 0%;
  background-size: cover;
  background-repeat: no-repeat;
}

.box-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}

.box-name {
  margin-top: 10%;
  padding: 5%;
  background-color: #AA8B56;
  opacity: 0.8;
  border-radius: 5rem 0 5rem 0;
}

.box-name h2 {
  font-size: 2.5rem;
  font-weight: 500;
  opacity: 0.7;
  color: #F0EBCE;
  text-align: center;
}

.box-name span {
  color: #395144;
  opacity: 1;
}

.box-name p {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.7;
  color: #F0EBCE;
}

