@import url("https://fonts.googleapis.com/css2?family=Bitcount+Grid+Double:wght@100..900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Bitcount Grid Double";
}
html,
body {
  height: 100%;
  width: 100%;
}
#main {
  height: 100%;
  width: 100%;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cursor {
  height: 15px;
  width: 15px;
  background-color: white;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  font-size: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 9;
}
#image {
  height: 40vh;
  width: 25vw;
  overflow: hidden;
  border: 2px solid whitesmoke;
  cursor: pointer;
}
#image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transition: all ease 1s;
}
