* {
  box-sizing: border-box;
  margin: auto;
}

.container {
  background-color: #070707;
  background-image: url(./assets/sbm.png);
  background-origin: padding-box;
  background-position: center center;
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, "Helvetica Neue",  Arial, sans-serif;
  padding: 170px 0 130px;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-style: normal;
  position: relative;
}

h1 {
  color: #ffffff;
  font-size: 47px;
  font-style: normal;
  font-weight: 700;
  line-height: 71px;
  text-align: center;
}

h3 {
  color: #7f0b07;
  text-shadow: 3px 1px 1px rgb(0 0 0);
  font-size: 23px;
  font-style: normal;
  font-weight: 700;
  line-height: 37px;
  text-align: center;
}

.socials {
  margin-top: 71px;
}

.socials > img {
  height: 20px;
  width: 20px;
}

a.no-underline,
a.no-underline:visited {
  text-decoration: none;
}

.footer {
  margin-bottom: 7px;
}

.footer > img {
  height: 33px;
  width: 33px;
}

@media screen and (max-width: 3000px) {
    body {
        width: 100%; /* The width is 100%, when the viewport is 3000px or smaller */
    }
    .container {
        background-size: 100%;  
        height: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 480px) {
    body {
        width: 100%; /* The width is 100%, when the viewport is 480px or smaller */
    }
   .container {
        background-size: 100%;
        height: 100%;
        width: 100%;
    }
    h1 {
        font-size: 2.5rem;
        width: 100%;
    }
}

@media screen and (max-width: 400px) {
    body {
        width: 100%; /* The width is 100%, when the viewport is 400px or smaller */
    }
    .container {
        background-size: 100%;
        height: 100%;
        width: 100%;
    }
    h1 {
        font-size: 2.2rem;
        width: 100%;
    }
}

@media screen and (orientation: landscape) {
    body {
        background-color: #070707;
        height: 100vh;
        width: 100vw;
    }
    .container {
        background-size: 100%;  
        height: 100%;
        width: 100%;
    }
}
