* {
  margin: 0%;
}

body {
  font-family: "Satoshi", sans-serif;
  color: #f74726;
  background-color: #faf3d9;
  line-height: 1.5;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 100vh; */
  background-image: url("../images/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  body {
    height: 100vh;
    font-size: 20px;
  }
}

header {
  width: 564px;
}

@media (max-width: 767px) {
  header {
    max-width: 340px;
  }
}

.content {
  position: relative;
}

h1 {
  font-family: "nove", sans-serif;
  font-size: 41px;
  margin-bottom: 27px;
  /* margin-top: 27px; */
  text-align: center;
}

@media (min-width: 768px) {
  h1 {
    font-size: 61px;
    margin-bottom: 41px;
    margin-top: 41px;
    text-align: start;
  }
}

@media (min-width: 1200px) {
  h1 {
    margin-top: 0;
  }
}

p {
  margin-bottom: 27px;
}

.contact__content {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.contact a {
  font-family: "nove", sans-serif;
  display: flex;
  gap: 20px;
  align-items: center;
  text-decoration: none;
  color: #f74726;
  font-weight: 900;
}

.contact a:hover {
  color: #b0331d;
}

/* Photos */
.img--1 {
  display: none;
}

.img--2 {
  position: relative;
  width: 150px;
}

.img--1__desktop {
  position: absolute;
  display: block;
  width: 150px;
  bottom: -170px;
  transform: translateX(50%);
}

@media (min-width: 768px) {
  .img--2 {
    position: absolute;
    width: 150px;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .img--1__desktop {
    right: 0;
    bottom: -50px;
    transform: translateX(0);
  }
}

@media (min-width: 1200px) {
  .img--1 {
    position: absolute;
    width: 400px;
    left: 0;
    bottom: 0;
    display: block;
  }

  .img--2 {
    width: 222px;
    top: 10px;
    right: 10px;
    left: auto;
    transform: translateX(0);
  }

  .img--1__desktop {
    display: none;
  }
}
