.home-container{
  min-height: 100vh;
}

.home-container::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assets/img/ironberg.png');
  background-size: cover;
  background-position: center center;
  filter: grayscale(100%) brightness(30%);
}

.home-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  min-height: 100vh;
  max-width: 140rem;
  margin: 0 auto;
  padding: 10rem 3rem;
  overflow: hidden;

  p{
    color: var(--white-color);
  }
}

.home-text-content {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  z-index: 1;
  padding: 20px;
  text-align: center;

  border-radius: 15px;
}

.home-title{
  text-transform: uppercase;
}

.home-image-content {
  display: flex;
  flex-direction: row;
}

.home-image{
  max-width: 100%;
  height: 100vh;
  position: absolute;
  bottom: 0;
  right: 0;
  filter: drop-shadow(0px 0px 50px var(--primary-color));
}

.home-button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--primary-color);
  padding: 2rem 4rem;
  color: var(--light-black-color);
  border: 0;
  border-radius: 20px;
  font-size: 3rem;
  cursor: pointer;
  animation: pulse 3s infinite;
  transition: filter .5s;
  width: 500px;
  margin: 60px 0 0 0;
  box-shadow: var(--primary-color) 0 0 20px;
}

.home-button:hover {
  filter: brightness(0.7);
}

.home-button img {
  width: 50px;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}


@media (max-width: 800px) {
  .home-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 1rem 0 1rem;
  }

  .home-container::before {
    top: 0
  }

  .home-text-content {
    order: 2;
    justify-content: flex-end;
    padding: 10px 30px;
    height: fit-content;
    bottom: 0;
    background-color: black;
    width: 100vw;
    box-shadow: black 0 -20px 20px 10px;

    p{
      font-size: 1.3rem;
    }
  }

  .home-title{
    font-size: 2.5rem;
  }

  .home-image {
    order: 1;
    height: unset;
    bottom: unset;
    top: -50px;
  }

  .home-button {
    padding: 1rem 2rem;
    border-radius: 20px;
    font-size: 2rem;
    width: 95%;
    margin-left: 0;
    z-index: 1;
    margin-top: 30px;

    span{
      font-size: 1.5rem;
    }
  }
}