body{
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
}
.iPhoneFrame{
    width: 310px;
    height: 648px;
    border-radius: 45px;
    background: rgb(0, 0, 0);
    border: rgb(134, 152, 151) solid 2px;
    position: relative;
}
.iPhoneWallpaper{
    height: 630px;
    width: 295px;
    border-radius: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}
.dynamic-island{
    height: 30px;
    width: 100px;
    border-radius: 9999px;
    background: rgba(0, 18, 55, 0.7);
    backdrop-filter: blur(10px);
    border-top: rgba(255, 255, 255, 0.4) solid 1px;
    border-left: rgba(255, 255, 255, 0.4) solid 1px;
    position: absolute;
    top: 10px;
    left: 50%;
    box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.5);
    translate: -50%;

    transition: all 0.2s;
}
.dynamic-island:active {
  transform: scale(1.4, 1.3);
  box-shadow: inset 0px 6px 15px rgba(0, 0, 0, 0.7);
}

.task-bar{
    width: 275px;
    height: 70px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0);
    border-top: rgba(255, 255, 255, 0.5) solid 1px;
    border-bottom: rgba(255, 255, 255, 0.5) solid 1px;
    position: absolute;
    left: 50%;
    top: 550px;
    translate: -50%;

    transition: all 0.12s ease-in-out;

    animation: task-bar-appear 0.8s ease;
}
.iPhoneContainer {
  height: 630px;
  width: 295px;
  border-radius: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px; /* khoảng cách giữa các hàng */
}

.button-row {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  position: relative;
  bottom: 20px;

  animation: button-appear 0.6s ease-in-out;
}
.button {
  height: 50px;
  width: 50px;
  border-radius: 15px;
  background: rgba(0, 119, 255, 0.472);
  border-top: rgba(255, 255, 255, 0.5) solid 1px;
  border-bottom: rgba(255, 255, 255, 0.5) solid 1px;
  display: flex;
  justify-content: center;
  align-items: center;

  transition: all 0.2s ease;
}
.button:active{
    transform: scale(1.1);
}
.button-row1{
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  position: relative;
  top: 50%;

  translate: -0% -50%;
}
.HomeIndicator{
  height: 5px;
  width: 100px;
  border-radius: 5px;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 625px;
  left: 50%;
  translate: -50%;
}
@keyframes button-appear{
  0%{
    transform: translateY(-100px) scale(0.1);
  }
  50%{
    transform: scale(1.07);
  }
  100%{
    transform: scale(1);
    translate: 0px;
  }
}
@keyframes task-bar-appear{
  0%{
    transform: scale(0) translateY(-200px);
  }
  50%{
    transform: scale(1.05);
  }
  100%{
    transform: scale(1);
  }
}