/*
COLORS::
burnt: #E88D72
yellow: "#FFDB15",
dark: "#020301",
light: "#AAA5A9",
grey: #B1B1B1
darkgrey: #444444
shade: "#00000044",
darkshade: "#00000095",
red: "#D70040",

*/

* {
  background: #131313;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Titillium Web", sans-serif;
}

.navbar {
  background: #131313;
  height: 80px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  position: fixed;
  top: 0;
  z-index: 999;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

#navbar__logo {
  background-color: #e88d72;
  background-image: linear-gradient(to top, #e88d72 0%, #d3d5d9 100%);
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 2rem;
}

.fa-gem {
  margin-right: 0.5rem;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
}

.navbar__item {
  height: 80px;
}

.navbar__links {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 0rem 1rem;
  height: 100%;
}

.navbar__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem 1rem;
  width: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 10px 20px;
  height: 100%;
  width: 100%;
  outline: none;
  border-radius: 4px;
  background: #131313;
  color: #fff;
  font-weight: 600;
  font-size: large;
}

.button:hover {
  background: #444444;
  color: #e88d72;
  transition: all 0.3s ease;
}

.navbar__links:hover {
  color: #e88d72;
  transition: all 0.3s ease;
}

.section__1 {
  background: #222222;
  height: 100%;
}

.section_1__text {
  align-items: center;
  justify-content: center;
  background: #131313;
}
