@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

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

body {
  font-family: "Space Mono", system-ui;
  background-color: #f8f8f8;
  color: #333;
}

.container {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  position: relative;
}

.circle {
  width: 30px;
  height: 30px;
  background-color: #0038FF;
  border-radius: 50%;
  margin-bottom: 20px;
}

.content {
  font-size: 16px;
  line-height: 1.6;
}

.content a {
  color: #0038FF;
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}

.content p {
  margin-bottom: 20px;
}

/* Desktop styles */
@media (min-width: 768px) {
  .container {
    position: absolute;
    top: 1in;
    left: 1in;
    width: 400px; /* Fixed width for desktop */
  }
}

/* Mobile styles */
@media (max-width: 767px) {
  .container {
    margin: 20px;
    width: calc(100% - 40px); /* Full width minus margins */
  }
}