 * {
  box-sizing: border-box;
 }
 
 body {
  margin: 0;
  padding: 0;
  background: url('../img/bg.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Inter', sans-serif;
  color: rgba(255, 255, 255, 0.904);
  font-size: 1.1rem;
  line-height: 1.6rem;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  max-width: 100%;
  gap: 20px;
}

.start, .top {
  text-align: left;
  background: rgba(0,0,0,0.6);
  border-radius: 16px;
  width: 100%;
  max-width: 700px;
  box-shadow: 0 0 25px rgba(0,255,255,0.2);
}

.top {
  padding: 15px 25px 35px 25px;
}

.top h1 {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  font-size: 2.8rem;
  color: #00ffccd8;
  margin-bottom: 15px;
  line-height: 3.4rem;
}

.top h2 {
  font-family: 'Orbitron', sans-serif;
  text-align: center;
  width: 80%;
  font-size: 1.8rem;
  margin: auto;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 2.4rem;
}

.start {
  padding: 20px 35px 20px 35px;
}

.start h3 {
  font-family: 'Orbitron', sans-serif;
  color: #6dbdff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.start p {
  margin-top: 0;
}

.start ul {
  margin-top: 20px;
  font-size: 1rem;
}

.start li {
  padding: 0 0 8px 0;
}

.start a {
  color: #fff;
}

.start a:hover {
  text-decoration: none;
}

footer {
  padding-bottom: 20px;
}

@media (min-width: 768px) {
  .top h2 {
    width: 100%;
  }
}