.home-section{
  margin-top: -40px;
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: space-around;
  align-items: center;
  letter-spacing: 1px;
  height: 100vh;
}

#h1-home{
  font-size: 23px;
}

.div-home-title :is(h2,span){
  font-weight: normal;
}

.img-home{
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
}

#div-imgprofile{
  display: flex;
  justify-content: center;
}

.description{
  text-align: center;
  margin: 20px 20px;
  line-height: 1.6;
  color: white;
}

#h2-home{
  margin-top: 15px;
  text-align: center;
}

.arrow {
  border-right: 5px solid white;
    border-bottom: 5px solid white;
    width: 30px;
    height: 30px;
    border-radius: 15%;
    transform: rotate(45deg);
    animation: bounce 2s infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@media only screen and (min-width : 360px)
and (min-height : 700px) {
  .img-home{
    width: 250px;
    height: 250px;
  }
  .home-section{
    justify-content: space-evenly;
  }
}


/*
  ##Device = Desktops
  ##Screen = 1281px to higher resolution desktops
*/

@media (min-width: 1281px) {
  .home-section{
    margin: 0;
    justify-content: center;
  }
  #h1-home:hover{
    transform: scale(1.6) perspective(0px);
    text-shadow: 2px 2px 5px black;
  }

  .img-home{
    transition: transform .2s; /* Animation */
  }

  .img-home:hover{
    transform: scale(1.27);
  }
}

@media (min-width: 768px) and (max-width: 1024px)
{
  .img-home {
    width: 50%;
    height: 100%;
  }
  #h1-home {
    font-size: 35px;
  }
  .arrow {
    margin-top: 53px;
  }
  .description {
    margin: 40px 20px;
  }
}

/*
  ##Device = Tablets, Ipads (landscape)
  ##Screen = B/w 768px to 1024px
*/

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .home-section{
    height: auto;
  }
}

@keyframes bounce {
  50% {
    transform: translateY(20px) rotate(45deg);
  }
}