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

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-grey: #d8d8d8;
  --color-red: #ef290f;
}

body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  color: var(--color-white);
  min-height: 100vh;
  background-image: url("assets/background.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}

.tm {
  font-size: 1rem;
  margin-left: -2px;
}

.header-center {
  font-size: 1rem;
}

.header-center a {
  color: var(--color-white);
  text-decoration: none;
}

.header-center a:hover {
  color: var(--color-grey);
}

.header-center a:active {
  color: var(--color-grey);
}

.desktop-only {
  display: none;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.live-soon-section {
  text-align: center;
  margin-bottom: 80px;
  width: 100%;
}

.live-soon-text {
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bracket {
  font-size: 2rem;
  margin: 0 40px;
}

.logo-section {
  width: 103%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-section img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    padding: 30px;
  }

  .header-top {
    margin-bottom: 0;
  }

  .mobile-only {
    display: none;
  }

  .desktop-only {
    display: inline-block;
  }

  .header-left {
    font-size: 1rem;
  }

  .header-right {
    font-size: 1rem;
  }

  .main-content {
    justify-content: center;
  }

  .logo-section {
    position: absolute;
    bottom: -10px;
  }

  .live-soon-text {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .header {
    flex-direction: row;
    justify-content: space-between;
    padding: 30px;
  }

  .header-top {
    margin-bottom: 0;
  }

  .mobile-only {
    display: none;
  }

  .header-left {
    font-size: 1rem;
  }

  .header-right {
    font-size: 1rem;
  }

  .logo-section {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
  }

  .live-soon-text {
    font-size: 1rem;
  }
}
