
.greeting {
    display: flex;
    width: 100%;
    height: 500px;

}

.welcome{
    font-size: 42px;
    color: var(--header);
    height: 68px;
}
.home-me-photo{
    position: relative;
}
.home-me-photo img{
    height: 500px;
    border-radius: 25px;
    cursor: pointer;
    transition: filter 0.3s ease;
}
.home-me-photo:hover img{
    filter: brightness(50%);
}
.contacts-on-img {
    display: none;
    opacity: 0;
}
.contacts-appear {
    display: flex;
    opacity: 100%;
    animation: opacity-contacts 0.7s ease-in-out 1;
    position: absolute;
    z-index: 1000;
    left: 135px;
    bottom: 35px;
}
@keyframes opacity-contacts {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 100%;
        transform: translateY(0px);
    }
  }
.contacts-appear i {
    cursor: pointer;
    font-size: 24px;
    color: white;
    margin: 0 20px;
    transition: color 0.3s ease, transform 0.3s ease;
}
.contacts-appear i:hover {
    color: var(--header);
    transform: scale(1.3);
}


    
.greeting-data {
    background-color: var(--bg2);
    margin-left: 30px;
    width: 68%;
    border-radius: 25px;
    padding: 25px 50px;
    display: grid;
}
.greeting-bottom {
    text-align: center;
    margin: auto;
    display: grid;
    align-self: flex-end;
  }
  .greeting-top {
    display: inline-block;
    align-self: flex-start;
  }
.purple-color {
    color: var(--header);
}

.top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-container button{
    height: 70%;
}
.my-name {
    margin-bottom: 25px;
}
.my-name p{
    font-size: 18px;
}
.pulse {
    animation: pulse-animation 1s infinite;
  }
  
  @keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px var(--shadow);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
  }
/* 
Carousel of my things
*/
@keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .my-things {
    overflow: hidden;
    padding: 20px 0;
    padding-bottom: 0;
    white-space: nowrap;
    width: 100%;
    position: relative;
  }
  
  .my-things:before,
  .my-things:after {
    position: absolute;
    top: 0;
    /* width: 150px; */
    height: 100%;
    content: "";
    z-index: 2;
  }

  
  .my-things:hover .my-things-slide {
    animation-play-state: paused;
  }
  
  .my-things-slide {
    display: inline-block;
    animation: 35s slide infinite linear;
  }
  
  .my-things-slide i {
    color: var(--header);
    font-size: 21px;
    margin: 0 40px;
    transition: color 0.3s ease, transform 0.3s ease;
  }
  .my-things-slide i:hover {
    color: var(--text);
    transform: scale(1.1);
  }
  /* 
  mobile-tablet version
  */
  @media (max-width: 1320px) {
    .greeting{
        flex-direction: column;
    }
    .home-me-photo {
        margin: auto;
    }
    .greeting-data {
        margin: auto;
        width: 500px;
        margin-top: 30px;
    }
}
@media (max-width: 600px) {
  .home-me-photo img{
    width: 100%;
    height: 100%;
    display: block;
  }
  .home-me-photo {
    width: 100%;
  }
  .greeting-data {
    margin: auto;
    width: 100%;
    margin-top: 30px;
  }
  .top-container {
    display: block;
  }
  .contacts-appear {
    left: 0;
  }
}
@media (max-width: 600px) {
  .greeting-data {
    padding: 25px 25px;
  }
}