@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=DM+Serif+Display:ital@0;1&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  background-image: url('bg.jpg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
}

.content {
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 70%;
}

h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-family: 'DM Serif Display', serif;
}

span {
  color: #848e70;
}

p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'DM Serif Display', serif;
  font-weight: normal;
  margin-top: 40px;
}

a {
  text-decoration: none;
  color: #848e70;
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  transition: all 0.3s ease;
}

a:hover {
  color: #535a47;
}

.socials li {
  display: inline-block;
}

.socials li a {
  text-decoration: none;
  color: #848e70;
  font-size: 2rem;
  margin: 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
}

.socials li a:hover {
  color: #535a47;
}

.socials li a svg {
  width: 75px;
  height: auto;
}

.socials li a svg path {
  fill: #848e70;
  transition: all 0.3s ease;
}

.socials li a svg:hover path {
  fill: #535a47;
}

@media (max-width: 900px) {
  .container {
    background-image: none;
  }

  .content {
    text-align: center;
    width: 100%;
    padding: 20px;
    align-items: center;
  }
}
