.hero {
  display: flex;
  justify-content: space-between;
  padding-top: 80px;
}

.hero-content {
  margin-left: var(--spacing);
  margin-right: 60px;
}

.name {
  font-size: var(--font-biggest);
  font-weight: 400;
  margin-top: 150px;
  line-height: 100%;
  margin-bottom: var(--spacing);
}

.bulletpoint {
  font-size: var(--font-medium);
}

.linkedin-button {
  height: 50px;
  width: 260px;
  border: 3px solid black;
  border-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: ease 0.2s;
  transition-delay: 0.1s;
  margin-top: 30px;
}

.linkedin-button:hover {
  cursor: pointer;
  transform: translateY(-4px);
}

.linkedin-logo {
  height: 40px;
  margin: 5px;
}

.linkedin-description {
  font-size: 28px;
  margin-right: 10px;
}

.tower {
  width: 40vw;
  height: 1000px;
  object-fit: cover;
  object-position: 0% 90%;
  border-left: 26px solid black;
}

@media (max-width: 1020px) {
  .hero {
    display: block;
  }

  .name {
    font-size: var(--font-big);
    margin-right: 0;
  }

  .tower {
    height: 400px;
    width: 100%;
    border-width: 4px 0 4px 0;
    border-style: solid;
    margin-top: 100px;
  }
}

@media (max-width: 550px) {
  .name {
    font-size: var(--font-huge-responsive);
  }

  .bulletpoint {
    font-size: var(--font-medium-responsive);
  }

  .hero-content {
    margin-left: 10px;
  }
}