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


body {
  height: 100vh;
  background: #0f172a;
  /* background: rgb(105, 70, 155);    */
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: system-ui, sans-serif;
}

.container{ 
  width: 50%;
  height:50%;
  border-radius: 0%;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  background: black;
}


iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* .container {
  animation: spin 20s linear infinite;
} */

/* @keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
} */


.circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  width: 20px;
  height: 20px;
  opacity: 1;
  transform: scale(1);
  transition: transform 3s, opacity 0.9s;
  /* background-image: linear-gradient(rgb(32, 148, 148)  ,rgb(60, 101, 163),rgb(128, 178, 178)); */
  /* background: radial-gradient(circle, rgb(0, 47, 255), rgb(6, 169, 239)); test*/
}
