/* Font face for local Roboto Condensed */
@font-face {
  font-family: 'Roboto Condensed Local';
  src: url('assets/RobotoCondensed-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto Condensed Local', sans-serif;
  font-weight: 500;
  background-color: #d9dfdc;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.losange {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  z-index: 1;
  opacity: 0.6;
}

.losange img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  font-size: 104px;
  color: #8d8d8d;
  text-transform: uppercase;
  line-height: calc(104px + 32px);
  letter-spacing: 2px;
  position: relative;
  margin-bottom: 20px;
}

.launch-date {
  background-color: #8d8d8d;
  color: #d9dfdc;
  font-size: 40px;
  text-transform: uppercase;
  padding: 8px 30px;
  letter-spacing: 1px;
}

.bottom-section {
  position: absolute;
  bottom: 88px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.horizontal-line {
  width: 512px;
  height: 4px;
  background-color: #8d8d8d;
  margin-bottom: 30px;
}

.logo-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ares-logo {
  width: 128px;
  height: auto;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .title {
    font-size: 48px;
  }

  .launch-date {
    font-size: 20px;
    padding: 6px 20px;
  }

  .losange {
    width: 280px;
    height: 280px;
  }

  .horizontal-line {
    width: 280px;
  }

}

@media (max-width: 480px) {
  .title {
    font-size: 36px;
  }

  .launch-date {
    font-size: 16px;
    padding: 5px 15px;
  }

  .losange {
    width: 200px;
    height: 200px;
  }

  .horizontal-line {
    width: 200px;
  }

  .ares-logo {
    width: 80px;
  }
}
