

body {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #071525; /* Dark background color */
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: 200;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.025em;
  flex-direction: column;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
}

.smaller {
  width: 50%;
}

.logo {
  /* width: 150px; /* Adjust as needed */
  max-width: 100%;
  height: auto;
  margin-bottom: 2%;
  width: 150px;
}

.tagline {
  color: #ffffff; /* White text color */
  font-size: 1em;
  text-align: left;
  width: 100%;
}

a {
  color: #07F4F4;
}

@media only screen and (max-width: 600px) {
  body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #071525; /* Dark background color */
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 200;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.025em;
    flex-direction: column;
    font-size: 0.9em;
  }

  .tagline {
    width: 80% /*!important*/;
  }

  .logo {
    /* width: 150px; /* Adjust as needed */
    max-width: 100%;
    width: 150px;
    margin-bottom: 10%;
  }

  .smaller {
    width: 100% /*!important*/;
    padding-left: 25% /*!important*/;
  }
}