html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: black;
}

.background {
  background-image: url("img/head.jpg");
  background-size: cover;
  background-position: center;
  height: 100%;
  width: 100%;
  position: relative;
}

.text {
  color: white;
  font-size: 20px;
  /* font-family: "Spectral", sans-serif; */
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1;
  text-shadow: 1px 1px 20px rgba(0, 0, 0, 0.5);
}

.signature {
  position: absolute;
  bottom: 15px;
  left: 55px;
}

.links {
  display: flex;
  gap: 4px 13px;
  flex-wrap: wrap;
}

.name {
  font-size: 69px;
  margin: 0 0 20px;
  line-height: 0.94;
  font-family: "Alegreya", sans-serif;
}

.fol {
  font-size: 26px;
  font-family: "Alegreya Sans";
  line-height: 1.1;
}

.stack {
  height: 45px;
}

p {
  margin: 0;
}

a {
  display: inline-block;
  margin: 0 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

@media (max-width: 1000px) {
  .background {
    background-image: url("img/mid.jpg");
  }

  .signature {
    bottom: 17px;
    left: 25px;
  }

  .name {
    font-size: 60px;
  }

  .fol {
    font-size: 23px;
  }

  .stack {
    height: 50px;
  }
}

@media (max-width: 600px) {
  .background {
    background-image: url("img/foot.jpg");
  }

  .signature {
    bottom: 13px;
    left: 17px;
  }

  .name {
    font-size: 53px;
  }

  .fol {
    font-size: 20px;
  }

  .stack {
    height: 50px;
  }

  .links {
    flex-wrap: wrap;
    display: flex;
    gap: 4px 13px;
  }
}
