#landing-container {
  background: url("../assets/images/landing-background.svg");
  background-repeat: no-repeat;
  background-position: bottom;
}

#landing {
  display: flex;
}

#landing-text-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  width: 60%;
}

#h1-name {
  background-image: linear-gradient(90deg, #92c0e8 33%, #3199f5 66%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#landing-text-container > p {
  color: #f5f5f5;
  margin: 1rem 0;
}

#landing-buttons-container {
  display: flex;
}

#landing-buttons-container a[href="#contact"] {
  margin-left: 1rem;
}

.button {
  border-radius: 15px;
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
  width: fit-content;
}

.primary-button {
  background-color: #319af5;
  color: #f5f5f5;
}

.primary-button:hover {
  background-color: #67aeef;
  color: #fcf8e8;
}

.secondary-button {
  background-color: #2a2a2a;
  color: #f5f5f5;
}

.secondary-button:hover {
  background-color: #67aeef;
  color: #f5f5f5;
}

#landing-img-container {
  align-items: center;
  display: flex;
  height: 100%;
  padding-left: 0;
  width: 40%;
}

#landing-img-container > img {
  border: 10px solid #2a2a2a;
  border-radius: 50%;
  width: 90%;
}

@media (max-width: 1050px) {
  #landing-text-container {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  #landing-img-container {
    display: none;
  }
}

@media (max-width: 600px) {
  #landing-buttons-container {
    align-items: center;
    flex-direction: column;
  }

  #landing-buttons-container a[href="#contact"] {
    background-color: #319af5;
    margin: 0;
    margin-top: 1rem;
  }

  #landing-buttons-container a[href="#contact"]:hover {
    background-color: #67aeef;
    color: #fcf8e8;
  }

  #landing-buttons-container a[href="#about"] {
    display: none;
  }
}
