@import url('https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

@font-face {
  font-family: "ColfaxAI";
  src: url(https://cdn.openai.com/API/fonts/ColfaxAIRegular.woff2)
      format("woff2"),
    url(https://cdn.openai.com/API/fonts/ColfaxAIRegular.woff) format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ColfaxAI";
  src: url(https://cdn.openai.com/API/fonts/ColfaxAIBold.woff2) format("woff2"),
    url(https://cdn.openai.com/API/fonts/ColfaxAIBold.woff) format("woff");
  font-weight: bold;
  font-style: normal;
}

body,
input {
  font-size: 16px;
  line-height: 24px;
  color: #353740;
  font-family: "ColfaxAI", Helvetica, sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}
.icon {
  width: 34px;
}
h2 a {
  color: black; /* change to any color you want for the icons */
  text-decoration: none;
  /* additional styling as per your design */
}
h2 a:hover {
  /* styling for when the mouse hovers over the link, e.g. change color */
  color: gray;
}
h3 {
  line-height: 40px;
  font-weight: bold;
  color: #202123;
  margin: 16px 0 40px;
}
form {
  display: flex;
  flex-direction: column;
  width: 500px;
}
main {
  width: 90%;
} 
ul {
  list-style-type: disc;
}
input[type="text"] {
  padding: 12px 16px;
  border: 1px solid #10a37f;
  border-radius: 4px;
  margin-bottom: 24px;
}
::placeholder {
  color: #8e8ea0;
  opacity: 1;
}
input[type="submit"] {
  padding: 12px 0;
  color: #fff;
  background-color: #10a37f;
  border: none;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
}
.result {
  font-weight: bold;
  margin-top: 40px;
}
.nospace {
  margin: 0;
  font-family: 'Courier Prime', monospace;
}
.social-links-bar {
  display: flex;
  justify-content: center;
  align-items: center;
}
.social-links a {
  margin: 0 10px; /* adjust as needed */
  color: black; /* change to any color you want for the icons */
  text-decoration: none;
  /* additional styling as per your design */
}
.social-links a:hover {
  /* styling for when the mouse hovers over the link, e.g. change color */
  color: gray;
}