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

body {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}

.circles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.circle {
  width: 120px;
  height: 120px;
  background: #fff;
  border-radius: 50%;
}
