body {
    background: linear-gradient(180deg, #1875E8 0%, #041833 98.89%) no-repeat;
    height: 100vh;
    font-family: 'Press Start 2P', cursive;
    color: white;
    display: grid;
    place-items: center;
  }

  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
  }

  .container h1 {
    font-size: 24px;
    max-width: 300px;
    text-align: center;
    line-height: 38px;
    text-transform: uppercase;
    text-shadow: 2px 2px 0px #041833;
  }
  
  .container h2 {
    font-size: 18px;
    text-shadow: 2px 2px 0px #041833;
  }
  
  span {
    color: #1875E8;
  }
  
  .frameworks {
    position: relative;
    width: 8rem;
    height: 8rem;
    margin: 2rem 0rem;
    transform-style: preserve-3d
  }
  
  .frameworks:hover {
    animation-name: flip;
    animation-duration: 5s;
    animation-fill-mode: forwards;
  }
  
  @keyframes flip {
    0% {
      transform: rotateY(0deg)
    }
    100% {
      transform: rotateY(1800deg)
    }
  }
  
  
  
  .front-vue, .back-react{
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-size: contain;
    position: absolute;
    backface-visibility: hidden;
  } 
  
  .front-vue {
      background-image:url("assets/Bp9mYAB.png");
  }
  
  .back-react {
    background-image: url("assets/coKvNaF.png");
    transform: rotateY(180deg)
  }
  