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

body {
  height: 100vh;
  background-color: #000000;
  color: #fff;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  padding: 40px;
  border: 1px solid green;
  border-radius: 5px;
}

@media only screen and (max-width: 600px) {
  .container {
    padding: 40px;
    height: 99vh;
    width: 98vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid green;
    border-radius: 0px;
  }

  p {
    font-size: 0.8rem !important;
    line-height: 1.5;
  }

  h1 {
    font-size: 1.2rem !important;
    margin-bottom: 1rem;
  }
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h1 span {
  color: green;
}

p {
  font-size: 1.2rem;
  line-height: 1.5;
}
