html {
  box-sizing: border-box;
}

*,
:after,
:before {
  box-sizing: inherit;
}

body {
  background: #ffffff;
}

html,
body,
main {
  margin: 0px;
  padding: 0px;
  height: 100%;
  width: 100%;

  font-family: "Open Sans", sans-serif;
}

main {
  display: flex;
  align-items: center;
  justify-content: center;

  color: white;
  color: #333;
}

.background-color-layer {
  height: 100%;
  width: 100%;

  background: rgb(222 255 38 / 58%);
  background: rgb(0, 0, 0, 0.8);
}

.background-image-layer {
  height: 100%;
  width: 100%;

  background-image: url("/background.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.content-banner {
  background: rgb(255 255 255 / 100%);
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  padding: 20px;
  text-align: center;

  width: 100%;
  max-width: 1300px;
}

.text {
  letter-spacing: -0.1rem;
  line-height: 1.2;
  text-shadow: 0 1px 1px #333;

  font-size: 28px;
  font-weight: 700;
}

.description {
  line-height: 1.2;
  font-size: 10px;
}

.logos {
}

.logo {
  padding: 10px;
}

.logo a {
  text-decoration: none;
  color: unset;
}

.logo img {
  height: auto;
  width: 100%;
  max-width: 300px;
}

.logo span {
  /* display: none; */

  text-decoration: none;

  padding: 0 30px;
}

@media only screen and (min-width: 800px) {
  .text {
    font-size: 50px;
    font-weight: 900;
  }

  .logos {
    display: flex;
  }

  .logo {
    width: 50%;
    padding: 20px;

    /* text-align: right; */
  }

  .logo:nth-child(2) {
    /* text-align: left; */
  }

  .logo img {
    height: 100px;
    width: auto;
    max-width: unset;
  }
}
