@import url('https://fonts.cdnfonts.com/css/tt-drugs-trial');

:root {
  --max-width: 960px;
}

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

body {
  font-family: 'TT Drugs Trl Cnd', sans-serif;
  line-height: 1.6;
  color: #000;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  text-align: center;
}

.container {
  max-width: var(--max-width);
  width: 90%;
  margin: 2rem auto;
  padding: 0 1rem;
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  max-width: 500px;
  margin-bottom: 1rem;
}

.mission {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.coming-soon {
  font-size: 1.15rem;
  color: #6c757d;
}

@media (max-width: 768px) {
  .logo {
    max-width: 300px;
  }

  .mission {
    font-size: 3rem;
  }

  .coming-soon {
    font-size: 2rem;
  }
}