* {
  box-sizing: border-box;
}

body,
html {
  margin: 0;
  padding: 0;
  max-height: 100vh;
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

.site-wrapper {
  width: 100%;
  height: 100vh;
  background-image: url("./img/wood_loft_bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.content {
  color: white;
  text-align: center;
}

.content h1 {
  margin: 20px 0 30px;
  text-shadow: 0 0 25px rgba(0, 0, 0, 1);
  letter-spacing: .1rem;
  font-weight: 700;
  font-size: 2.4rem;
}

.content p {
  font-size: 1.25rem;
  margin: 0;
}

.logo {
  width: 200px;
  max-height: 40vh;
}

@media screen and (max-width: 580px) {
  .logo {
    width: 200px;
  }
}

.contact {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  font-size: 1.4rem;
}

.contact > li {
  margin-bottom: 10px;
}

.contact > li > a {
  transition: color .3s ease-in-out;
}

.contact > li > a:hover {
  color: #e7e7e7;
}