html, body {
  height: 100%;
}

body {
  font-family: 'Noto Serif', serif;
  background-image: url('images/bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  margin: 0 20px;
  font-size: clamp(1rem, -0.8750rem + 3.3333vw, 1.25rem);
}

img {
  display: block;
}

main {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.welcome-box {
  position: relative;
  padding: 225px 5vw 5vh 5vw;
  text-align: center;
  z-index: 0;
  margin: 10% 0 2rem 0;
}
.welcome-box::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  height: 90%;
  width: 100%;
  background: rgba(247,245,244,0.80);
  border-radius: 20px;
}
.welcome-box img {
  width: 225px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 5px 5px 20px 0 rgba(35,31,32,0.20);
}
.welcome-box h1 {
  text-transform: uppercase;
  font-size: 2.5em;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 5%;
}
.welcome-box h2 {
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10%;
}
.welcome-box p {
  line-height: 150%;
  margin-bottom: 15%;
}
.welcome-box a {
  display: inline-block;
  padding: 2.5% 10%;
  background: #C1B49A;
  border-radius: 5px;
  color: #F7F5F4;
  text-shadow: 2px 2px 0 rgba(35,31,32,0.20);
  font-family: 'Noto Sans', sans-serif;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 700;
  transition: 100ms all ease-out;
}
.welcome-box a:hover {
  text-shadow: 2px 2px 0 rgba(35,31,32,0.50);
}

img.sc-logo {
  margin: 0 auto 5% auto;
  width: 200px;
}

@media screen and (max-width: 960px) {
  body {
    background-attachment: scroll;
  }
  .welcome-box {
    padding-top: 175px;
  }
  .welcome-box h1 {
    font-size: 2em;
  }
  .welcome-box h2 {
    font-size: 0.875rem;
  }
  .welcome-box p {
    font-size: 1.25rem;
  }
  .welcome-box img {
    width: 175px;
  }
  .welcome-box a {
    font-size: 1rem;
  }
}