@import url('https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100%;

    background-color: black;
    font-family: poppins;
}

.container {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}

.container img {
    width: 100%;
    height: 99vh;

    z-index: 1;
    object-fit: cover;
}

.container span {
    position: absolute;
    width: 100%;
    height: 100%;

    background-color: rgba(00, 00, 00, 0.6);
    z-index: 5;
}

.box {
    position: absolute;
    color: #fff;

    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    /* gap: 20px; */
}

.box h1 {
    font-size: 80px;
    font-weight: bold;
    color: #0dcaf2;
    text-align: center;
}

.box p {
    font-size: 20px;
    text-align: center;
}

.box button {
    /* background-color: rgb(251, 200, 32);
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;

    font-size: 14px;
    pointer-events: all;

    margin-top: 30px;
    outline: none;
    border: none;
    font-weight: 400;

    transition: all 0.3s ease-in-out; */

    margin-top: 30px;

    --width: 150px;
    --timing: 2s;
    border: 0;
    width: var(--width);
    padding-block: 1em;
    color: #fff;
    font-weight: bold;
    font-size: 1em;
    background: #f03b7d;
    transition: all 0.2s;
    border-radius: 3px;
    cursor: pointer;
}

.box button:hover {
    /* background-color: #fcd144; */

    background-image: linear-gradient(
        to right,
        rgb(250, 82, 82),
        rgb(250, 82, 82) 16.65%,
        rgb(190, 75, 219) 16.65%,
        rgb(190, 75, 219) 33.3%,
        rgb(76, 110, 245) 33.3%,
        rgb(76, 110, 245) 49.95%,
        rgb(64, 192, 87) 49.95%,
        rgb(64, 192, 87) 66.6%,
        rgb(250, 176, 5) 66.6%,
        rgb(250, 176, 5) 83.25%,
        rgb(253, 126, 20) 83.25%,
        rgb(253, 126, 20) 100%,
        rgb(250, 82, 82) 100%
      );
      animation: var(--timing) linear dance6123 infinite;
      transform: scale(1.1) translateY(-1px);
}

@keyframes dance6123 {
    to {
      background-position: var(--width);
    }
  }

.box button:active {
    transform: scale(1);
}

@media (max-width: 756px) {
    .box h1 {
        font-size: 52px;
    }
    
    .box p {
        font-size: 16px;
    }
}

@media (max-width: 550px) {
    .box button {
        margin-top: 15px;
    }

    .box h1 {
        font-size: 36px;
    }
    
    .box p {
        font-size: 10px;
    }
}

/* Loader animation */
  .loader {
    display: flex;
    justify-content: center;
    align-items: center;
    --animation: 2s ease-in-out infinite;

    /* margin-top: 20px; */
  }
  
  .loader .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 20px;
    height: 20px;
    border: solid 2px transparent;
    border-radius: 50%;
    margin: 0 10px;
    background-color: transparent;
    animation: circle-keys var(--animation);
  }
  
  .loader .circle .dot {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    animation: dot-keys var(--animation);
  }
  
  .loader .circle .outline {
    position: absolute;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    animation: outline-keys var(--animation);
  }
  
  .circle:nth-child(1) {
    --color: #4285f4; /* Blue */
    border-color: var(--color);
  }
  
  .circle:nth-child(1) .dot {
    background-color: var(--color);
  }
  
  .circle:nth-child(2) {
    --color: #f03b7d; /* Red */
    border-color: var(--color);
    animation-delay: 0.3s;
  }
  
  .circle:nth-child(2) .dot {
    background-color: var(--color);
    animation-delay: 0.3s;
  }
  
  .circle:nth-child(3) {
    --color: #fcd144; /* Yellow */
    border-color: var(--color);
    animation-delay: 0.6s;
  }
  
  .circle:nth-child(3) .dot {
    background-color: var(--color);
    animation-delay: 0.6s;
  }
  
  .circle:nth-child(4) {
    --color: #34a853; /* Green */
    border-color: var(--color);
    animation-delay: 0.9s;
  }
  
  .circle:nth-child(4) .dot {
    background-color: var(--color);
    animation-delay: 0.9s;
  }
  
  .circle:nth-child(5) {
    --color: #4285f4; /* Blue (repeat for continuity) */
    border-color: var(--color);
    animation-delay: 1.2s;
  }
  
  .circle:nth-child(5) .dot {
    background-color: var(--color);
    animation-delay: 1.2s;
  }
  
  .circle:nth-child(1) .outline {
    animation-delay: 0.9s;
  }
  
  .circle:nth-child(2) .outline {
    animation-delay: 1.2s;
  }
  
  .circle:nth-child(3) .outline {
    animation-delay: 1.5s;
  }
  
  .circle:nth-child(4) .outline {
    animation-delay: 1.8s;
  }
  
  .circle:nth-child(5) .outline {
    animation-delay: 2.1s;
  }
  
  @keyframes circle-keys {
    0% {
      transform: scale(1);
      opacity: 1;
    }
  
    50% {
      transform: scale(1.5);
      opacity: 0.5;
    }
  
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  @keyframes dot-keys {
    0% {
      transform: scale(1);
    }
  
    50% {
      transform: scale(0);
    }
  
    100% {
      transform: scale(1);
    }
  }
  
  @keyframes outline-keys {
    0% {
      transform: scale(0);
      outline: solid 20px var(--color);
      outline-offset: 0;
      opacity: 1;
    }
  
    100% {
      transform: scale(1);
      outline: solid 0 transparent;
      outline-offset: 20px;
      opacity: 0;
    }
  }
  

/* Links */
.card {
    width: fit-content;
    height: fit-content;
    /* background-color: rgb(238, 238, 238); */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 25px;
    gap: 20px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);

    position: absolute;
    z-index: 20;
    bottom: 5px;
    right: 10px;
  }
  
  /* for all social containers*/
  .socialContainer {
    width: 36px;
    height: 36px;
    background-color: rgb(44, 44, 44);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition-duration: .3s;
  }
  /* instagram*/
  .containerOne:hover {
    background-color: #d62976;
    transition-duration: .3s;
  }
  /* GitHub*/
  .containerTwo:hover {
    background-color: #111;
    transition-duration: .3s;
  }
  /* linkdin*/
  .containerThree:hover {
    background-color: #0072b1;
    transition-duration: .3s;
  }
  /* YouTube*/
  .containerFour:hover {
    background-color: #ff0000;
    transition-duration: .3s;
  }
  
  .socialContainer:active {
    transform: scale(0.9);
    transition-duration: .3s;
  }
  
  .socialSvg {
    width: 17px;
  }
  
  .socialSvg path {
    fill: rgb(255, 255, 255);
  }
  
  .socialContainer:hover .socialSvg {
    animation: slide-in-top 0.3s both;
  }
  
  @keyframes slide-in-top {
    0% {
      transform: translateY(-50px);
      opacity: 0;
    }
  
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  