/* =========================
   RESET
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 40px;
  background-color: #ffffff;
  color: #000000;
  overflow-x: hidden;
}


/* =========================
   MESSAGE
========================= */
.message {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 100px;
}