.full-body-section {
  width: 100%;
  height: 100%;
}

.bkgd-image {
  width: 100vw;
  height: 100vh;
  min-height: auto;
  background-image: url('../images/Splash_Screen_A2.webp');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.body {
  background-color: rgba(0, 0, 0, 0);
  font-family: Lato, sans-serif;
  font-weight: 300;
}

.full-centered-container {
  max-width: 600px;
  min-height: 600px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding: 70px 60px;
  display: flex;
}

.logo-container {
  padding: 0 0 30px;
}

.text-container {
  margin-bottom: 10px;
}

.text-small {
  color: #fff;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.line---horizontal {
  width: 100%;
  height: 1px;
  background-color: #fff;
  margin-top: 30px;
  padding-top: 0;
}

.text-large {
  color: #fff;
  text-align: center;
  font-family: Lato, sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 25px;
}

.link {
  color: #fff;
  text-decoration: none;
}

.line---horizontal-inside-text {
  width: 50%;
  height: 1px;
  background-color: rgba(255, 255, 255, .5);
  margin-top: 15px;
  margin-bottom: 15px;
  padding-top: 0;
}

@media screen and (max-width: 479px) {
  .link {
    font-size: 18px;
  }
}


