@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
  box-sizing: border-box;
}

body {
  background-color: #fafafa;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  overflow: hidden;
}

.circle {
  height: 24px;
  width: 24px;
  border-radius: 24px;
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999999; /* so that it stays on top of all other elements */
}
.container {
  width: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background-color: rgb(0, 0, 0, 0.2);
}

.AK {
  font-family: "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgb(0, 0, 0);
  margin: 0;
  margin-bottom: 1rem;
  text-align: center;
}
h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: rgb(0, 0, 0);
  margin: 0;
  margin-bottom: 1rem;
  text-align: center;
}
a {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: rgb(54, 2, 47, 0.8);
  text-decoration: none;
  margin: 0;
  margin-bottom: 1rem;
  text-align: center;
}

.circle {
  position: absolute;
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 20px;
  background-color: #fff;
}
