@import "fonts_styles.css";

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  background: url(../PHOTOS/index.jpeg) no-repeat center center/cover;
}


* { color: #dedede; text-decoration: none;}

.name{
  font-family: peach;
  font-size: 12px; 
  position: absolute; 
  top: 42%; 
  right: 23%; 
  transform: translate(0,-50%);
}

.welcomeText{
  position: absolute;
  top: 60%;
  left:9%;
  font-family: cheri;
  font-size: 25px;

}

.zoom-in-out-box {
  cursor: pointer;
  height: 120px;
  width: 200px;
  /* animation: zoom-in-zoom-out 2s ease infinite; */
}

/* 
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.5, 1.5);
  }
  100% {
    transform: scale(1, 1);
  }
} */


.clickMe{
  position: absolute; 
  top: 72%; 
  left: 40%;
}

.Indexaudio{
  position: absolute;
  top: 0;
}


@media only screen and (max-width: 320px) and (max-height: 568px) {
  body {
      height: 100vh;
      width: 100%;
      overflow: hidden;
  }
  
  .textdiv{
      margin-top: 80px;
  }

  .zoom-in-out-box{
    height: 20px;
    width: 20x;
  }

  .name{
      visibility: hidden;
  }
}

@media only screen and (max-width: 414px) and (max-height: 736px) {
  body {
      height: 100vh;
      width: 100%;
      overflow: hidden;
  }

  .textdiv {
      margin-top: 80px;
  }

  .welcomeText{
    font-size: 7px;
    left: 5%;
  }

  .zoom-in-out-box{
    height: 60px;
    width: 90px;
  }

  
  .clickMe{
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute; 
    top: 65%; 
    left: 36%;
  }

  .name{
      visibility: hidden;
  }
  
}

