@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

.xyz {
    background: #08949c;
    min-height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 3rem;
}

.abc1 {
    height: 80%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.abc2 {
    height: 20%;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}

.abc11 {
    height: 100vh;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: start;
    margin-left: 5.5%;
}

.abc12 {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.abc12 img {
    width: 80%;
    height: 80%;
    animation: float 3s ease-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
    }
    100% {
        transform: translateY(0px);
    }
}

#abc12-shadow {
    height: 30px;
    width: 200px;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 1);
    border-radius: 50%;
    filter: blur(3px);
    animation: shrink 3s ease-out infinite;
    margin-top: 50px;
    margin-left: 160px;
}

@keyframes shrink {
    0% {
        width: 200px;
        opacity: 0.5;
    }
    50% {
        width: 150px;
        opacity: 0.7;
    }
    100% {
        width: 200px;
        opacity: 0.5;
    }
}

.abc12 p {
    color: #b7eef5;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    margin-top: 4rem;
}

.abc11 h1 {
    background-clip: text;
    color: transparent;
    background-image: linear-gradient(to right, #C2B280, #ffffff);
    font-size: 4rem;
    font-weight: 700;
    text-align: start;
    margin-top: 10%;
}

.abc11 p {
    width: 60%;
    color: #fff;
    font-size: 2rem;
    font-weight: 400;
    text-align: start;
}

.abc11 p a {
    width: 50%;
    color: #b7eef5;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: start;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.2s ease;
}

.abc11 p a:hover {
    letter-spacing: 0.2rem;
    transition: all 0.2s ease;
}

.abc111 {
    width: 90%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
}

.playstore-button {
    width: 300px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #000;
    border-radius: 9999px;
    background-color: rgba(0, 0, 0, 1);
    padding: 0.625rem 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 1);
    outline: 0;
    transition: all 0.2s ease;
    text-decoration: none;
}
  
.playstore-button:hover {
    background-color: transparent;
    color: rgba(255, 255, 255, 1);
}
  
.icon {
    height: 1.5rem;
    width: 4rem;
}
  
.texts {
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    color: white !important;
}
  
.playstore-button .text-1 {
    margin-bottom: 0.25rem;
    font-size: 1.2rem;
    line-height: 1.2rem;
    color: white !important;
    text-decoration: none;
}
  
.playstore-button .text-2 {
    font-weight: 600;
    color: white !important;
    text-decoration: none;
}

.playstore-button:hover .text-1 {
    color: white !important;
}

.playstore-button:hover .text-2 {
    color: white !important;
}
  
.animated-button {
  width: 250px;
  height: 60px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 16px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 24px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 0 0 2px #fff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  margin-top: 4rem;
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: #fff;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  color: white !important;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: #212121;
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
  color: black !important;
}

.animated-button:hover svg {
  fill: #212121;
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px #fff;
}

.animated-button:hover .circle {
  width: 300px;
  height: 250px;
  opacity: 1;
}

.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

@media (min-width: 0px) and (max-width: 768px) {
    .abc11 p {
        display: none;
    }

    .animated-button {
        display: none;
    }

    .abc1 {
        flex-direction: column;
    }

    .abc11 h1 {
        font-size: 2rem;
    }

    .abc12 img {
        width: 80%;
        height: 80%;
    }

    .playstore-button {
        width: 80px;
        height: 30px;
    }

    .text-1 {
        font-size: 14px;
        line-height: 1rem;
    }

    .text-2 {
        font-size: 14px;
    }

    .texts {
        display: none;
    }

    .abc12 p {
        font-size: 1rem;
    }
}

@media (min-width: 769px) and (max-width: 1300px) {
    .abc11 h1 {
        font-size: 3rem;
    }

    .abc12 img {
        width: 80%;
        height: 80%;
    }

    .abc11 p {
        width: 80%;
        font-size: 1.5rem;
        margin-bottom: 4rem;
    }

    .abc12 {
        justify-content: end;
    }

    .playstore-button {
        width: 180px;
    }

    .text-1 {
        font-size: 12px;
        line-height: 1rem;
    }

    .text-2 {
        font-size: 12px;
    }
}