body {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin: 1rem;
  gap: 1rem;
  font-family: "Courier Prime", "Courier New";
  font-weight: bold;
  font-size: 1.25rem;
  color: white;
  background-color: black;
}
img {
  box-sizing: border-box;
  width: 100%;
  height: auto;
  border: 3px solid white;
  border-radius: 10px;
}
h1 {
  margin: 0;
  padding: 0;
  font-family: "Courier Prime", "Courier New";
  font-weight: bold;
  font-size: 1.25rem;
  color: white;
}
p {
  margin: 0;
  padding: 0;
  font-family: "Courier Prime", "Courier New";
  font-weight: bold;
  font-size: 1.25rem;
  color: white;
}
a {
  display: flex;
  width: clamp(250px, 100%, 750px);
  height: auto;
  margin: 0;
  padding: 0;
  text-decoration: none;
}
.courier-prime-regular {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
}
.courier-prime-bold {
  font-family: "Courier Prime", monospace;
  font-weight: 700;
  font-style: normal;
}
.box {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: clamp(250px, 100%, 750px);
  height: auto;
  margin: 0;
  gap: 1rem;
  padding: 1rem;
  overflow: hidden;
  text-align: start;
  border: 3px solid white;
  border-radius: 10px;
  background-color: black;
}
.row {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
  gap: 1rem;
}
.image {
  display: flex;
  box-sizing: border-box;
  width: clamp(250px, 100%, 750px);
  height: auto;
  margin: 0;
  padding: 0;
}
.button {
  cursor: pointer;
  display: flex;
  box-sizing: border-box;
  width: clamp(250px, 100%, 750px);
  height: auto;
  margin: 0;
  padding: 1rem;
  text-align: start;
  font-family: "Courier Prime", "Courier New";
  font-weight: bold;
  font-size: 1.25rem;
  border: 3px solid white;
  border-radius: 10px;
  color: white;
  background-color: black;
}
.box-button {
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  margin: 0;
  gap: 1rem;
  padding: 1rem;
  text-align: start;
  font-family: "Courier Prime", "Courier New";
  font-weight: bold;
  font-size: 1.25rem;
  border: 3px solid white;
  border-radius: 10px;
  color: white;
  background-color: black;
}
.line {
  width: clamp(250px, 100% 750px);
  margin: 0 -1rem 0 -1rem;
  padding: 0;
  border: none;
  border-top: 3px solid white;
}