@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&family=Space+Grotesk:wght@300..700&family=Unbounded:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Code:ital,wght@0,300..800;1,300..800&display=swap');

* {
  transition: all 0.09s;
}

body {
  background-color: #060606;
  color: #eee;
}

.title {
  font-family: "Unbounded", sans-serif;
  margin-top: 30px;
  text-align: center;
}

h2, h3 {
  font-family: "Unbounded", sans-serif;
}

a {
  color: #ce65ff;
}

input {
  background-color: #121212;
  outline: none;
  border: 1px solid #1a1a1a;
  padding: 10px 20px;
  font-size: 17px;
  font-family: "Google Sans Code", monospace;
  border-radius: 10px;
  width: 79%;
  box-sizing: border-box;
}

input:focus, input:hover {
  background-color: #151515;
}

button {
  color: #eee;
  font-weight: 600;
  background-color: #121212;
  border: 1px solid #1a1a1a;
  outline: none;
  padding: 10px 15px;
  font-size: 17px;
  font-family: "Space Grotesk", monospace;
  border-radius: 10px;
  box-sizing: border-box;
}

button:hover {
  background-color: #151515;
}

.primary {
  background-color: #520079;
  border: 1px solid #660096;
}

.primary:hover {
  background-color: #580081;
}


.product {
  width: 100%;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  background-color: #270b35;
  padding: 100px 40px;
  border-radius: 30px;
  border: 1px solid #4a1464;
  margin-top: 30px;
  color: #e09cff;
  padding-top: 80px;
  box-sizing: border-box;
}

.description {
  font-family: "Space Grotesk", sans-serif;
  width: 100%;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
  background-color: #090909;
  border: 1px solid #111;
  padding: 5px 30px;
  box-sizing: border-box;
  border-radius: 10px;
}

.description h1 {
  font-weight: 700;
}

.description p {
  font-size: 17px;
}

.main {
  font-family: "Space Grotesk", sans-serif;
  margin-top: 25vh;
  background-color: #090909;
  border: 1px solid #111;
  border-radius: 10px;
  width: 100%;
  max-width: max-content;
  box-sizing: border-box;
  padding: 10px 37.5px 15px 35px;
  margin-left: auto;
  margin-right: auto;
}

.code {
  background-color: #4a1464;
  padding: 10px 20px;
  font-family: "Google Sans Code", monospace;
  border-radius: 10px;
  border: 1px solid #601683;
}

.footer {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #2a2a2a;
  font-family: "Space Grotesk";
}