body {
  align-items: center;
  background-color: #e0dbc2;
  color: #000e05;
  display: flex;
  font-family: sans-serif;
  height: 100vh;
  justify-content: center;
  margin: 0;
}

.container {
  position: relative;
  width: 80%;
  height: auto;
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75vh;
  height: 75vh;
  border: 1px solid rgba(0, 14, 5, 0.3);
  border-radius: 50%;
  box-shadow: inset 5px 5px 15px 5px rgba(0, 14, 5, 0.3);
  z-index: 1;
}

.title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.manrope-title {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}