@charset "utf-8";

.main {
  font-family: 'josefin slab', serif;
}

.first-view {
  max-inline-size: max-content;
  margin-inline: auto;
  text-align: left;
}

.first-view-text h1 {
  color: #fff;
  font-size: 45px;
  padding-top: 45px;
  padding-bottom: 25px;
  text-shadow: 1px 1px 10px #4b2c14;
  text-align: center;
}

.first-view-text h1::after {
  background-color: #fff;
  content: '';
  display: block;
  height: 3px;
  margin-top: 8px;
  margin-left: auto;
  margin-right: auto;
  width: 48px;
}

.first-view-text p {
  color: #fff;
  font-size: 18px;
  font-family: 'josefin slab', serif;
  font-weight: bold;
  line-height: 270%;
  padding: 5px 25px;
  text-shadow: 1px 1px 10px #4b2c14;
}

.first-view-text img {
  margin-right: 5%;
  top: 50%;
  transform: translateY(-150%) translateX(-100%);
  width: 140px;
}

a {
  color: #000;
}

a:hover,
a:active {
  text-decoration: none;
}

.footer {
  z-index: 2;
  top: 90%;
  left: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
}


@media screen and (max-width: 820px) {

  .first-view-text p {
    font-size: 16px;
  }

  .first-view-text img {
    margin-right: 5%;
    position: absolute;
    top: 50%;
    transform: translateY(-10%) translateX(-100%);
    width: 20%;
  }

}

@media screen and (max-width: 540px) {

  .first-view {
    position: absolute;
  }

  .first-view-text h1 {
    font-size: 35px;
  }

  .first-view-text {
    align-items: center;
    justify-content: center;
  }

  .first-view-text img {
    margin-left: 60%;
    margin-top: 45px;
    position: relative;
  }

}