/* FONTS */
@font-face {
  font-family: "TT Travels Bold";
  src: url("../fonts/tt-travels-bold.otf");
}

@font-face {
  font-family: "TT Travels DemiBold";
  src: url("../fonts/tt-travels-demibold.otf");
}

/* GLOBAL */

*,
*::before,
*::after {
  box-sizing: border-box;
  user-select: none;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "TT Travels DemiBold", "Arial", sans-serif;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

/* MAIN CONTENT */

.main-content {
  flex-grow: 1;
}