* {
  font-family: "Nunito Sans", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.container {
  box-shadow: 0px 0px 20px 10px #0044ff;
  padding: 50px;
  border-radius: 30px;
  text-align: center;
  background-color: #fff;
  max-width: 800px;
  width: 100%;
}

h1 {
  margin-bottom: 40px;
}

input {
  border: none;
  border-bottom: 1px solid #0044ff;
  width: calc(100% - 22px); /* Adjusted width to fit container */
  margin-bottom: 20px;
  outline: none;
  padding: 10px;
  text-align: center;
  font-size: 25px;
}

button {
  width: 100%;
  height: 35px;
  margin-top: 25px;
  border-radius: 20px;
  border: none;
  background-color: #0044ff;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

#result {
  margin-top: 20px;
  font-size: 25px;
}

.input-group {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.input-item {
  flex-basis: calc(50% - 10px);
}

.image {
  max-width: 100%; /* Ensures image fits container */
  box-shadow: 0px 0px 20px 10px #0044ff;
  border-radius: 30px;
  margin-top: 20px; /* Adjusted margin for spacing */
}

footer {
  background-color: #3498db;
  color: #fff;
  text-align: center;
  padding: 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.article_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 30px;
  padding-bottom: 10%;
}

.box_shadow {
  background-color: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 30px;
  box-shadow: 0px 0px 20px 10px #0044ff;
  max-width: 800px;
  width: 100%;
}

.box_shadow header {
  margin-bottom: 20px;
}

.box_shadow h2 {
  color: #0044ff;
  font-size: 24px;
  margin-bottom: 10px;
}

.box_shadow p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}
