:root {
  --max-width: 1600px;
  --background-color: black;
  --white: white;
  --dark-info-color: rgb(22, 22, 22);
  --light-info-color: rgb(230, 230, 230);
}

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

html {
  background-color: var(--background-color);
}

body {
  height: 100%;
  font-family: DaimlerCorposRegular, Arial, sans-serif;
}

.header-container {
  display: flex;
  justify-content: space-between;
  height: 100px;
  max-height: 100px;
  padding: 0.5rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand-area {
  display: inline-flex;
  align-items: center;
}

.brand {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-star {
  margin-right: 2rem;
}

.logo-claim {
  margin-left: 2rem;
  align-self: flex-end;
}

.content {
  width: 100%;
  height: calc(100vh - 126.8px);
  padding: 0.5rem 0;
}

.main-section {
  width: 100%;
  margin: auto;
  height: 100%;
  position: relative;
}

.info-container {
  position: absolute;
  top: 5%;
  left: 2%;
  width: 300px;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.704);
  border: 2px solid var(--light-info-color);
  background-color: var(--dark-info-color);
  color: var(--light-info-color);
}

.info-item {
  padding: 1rem;
}

.info-title {
  border-bottom: 2px solid var(--light-info-color);
  font-family: DaimlerCorpoA, Arial, serif;
}

.info-content {
  font-family: DaimlerCorposRegular, Arial, sans-serif;
}

.hero-image-container {
  width: 100%;
  height: 100%;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* background-image: url("../assets/images/background.jpg");
  background-size: cover;
  background-position: bottom; */
}

.info-section {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.info-wrapper {
  max-width: var(--max-width);
  width: 100%;
  margin: auto;
  position: relative;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  color: var(--white);
  font-size: 0.75rem;
}

.navbar {
  padding: 0 2em;
  font-size: .75rem;
}

.navbar-item {
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 400;
  text-decoration: none;
}
