* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-size: 12px;
  background: #0E0D0E;
}

.wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.wrap > *:first-child {
  margin: 2rem 0 0 0;
}

.wrap > *:nth-child(2) {
  margin: 3.5rem 0 2.75rem 0;
}

.wrap > *:nth-child(3) {
  margin: 0 0 2rem 0;
  width: calc(11vw + 100px);
}

.wrap > *:last-child {
  margin: 0 0 2rem 0;
}

img {
  width: calc(17vw + 100px);
  min-width: 30vh;
  transition: all 1s;
}

p {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  color: #434343;
  text-transform: uppercase;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  text-align: center;
  line-height: 3rem;
}

p span {
  margin: 0 0.5rem;
}

a {
  color: #898989;
  text-decoration: none;
  border-bottom: solid 1px #898989;
  padding-bottom: 4px;
  transition: all 1s;
}

a:hover {
  color: #fff;
  border-bottom: solid 1px #0E0D0E;
  transition: all 1s;
}

@media only screen and (max-height: 555px) {
  p {
    position: static;
  }
}