* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: monospace;
}
html {
  height: 100%;
  background-color: whitesmoke;
}
body {
  padding: 10px;
}
#page {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  justify-content: center;
  gap: 15px;
}
article {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  max-width: 45rem;
  margin: 0;
  border-radius: 3px;
  background-color: white;
}
h1 {
  text-align: center;
  margin-bottom: 50px;
  position: sticky;
  top:0;
  background-color: white;
  height: 40px;
  box-shadow: 0 2px 4px 1px #eaeaea;
  z-index: 100;
}
p {
  font-size: small;
}
img {
  border-radius: 3px;
  width: 100%;
  height: auto;
}

.error {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 10px;
  color: #e90954;
}

.btn-container {
  display: flex;
  gap: 5px;
  width: 100%;
  justify-content: center;
  padding: 5px;
  margin-top: 10px;
}

/*********************************************/
.btn {
  border: 2px solid #0d6efd;
  border-radius: 3px;
  text-decoration: none;
  text-align: center;
  padding: 7px 65px;
  color: #0d6efd;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  background-color: transparent;
  font-size: small;
  width: fit-content;
  margin: 0 auto;
}

.btn:hover {
  background-color: #0d6efd;
  color: white;
  cursor: pointer;
}
/*********************************************/
form {
  margin: 0 auto;
  max-width: 45rem;
}

fieldset {
  display: flex;
  flex-direction: column;
  gap: 5px;

  border-radius: 3px;
}
form fieldset {
  padding: 30px 80px;
}
input,
textarea {
  border-radius: 3px;
  padding: 5px;
  border: 1px solid #ccc;
}
