* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Times New Roman', Times, serif;
}
body {
  min-height: 100vh;
  min-width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #26343b;
  color: #d5d8fe;
}
header,
main,
footer {
  min-width: 100%;
  padding: 20px;
}
header {
  font-size: 2rem;
  text-shadow: 1px 2px 12px rgba(0, 0, 0, 0.8);
}
main {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}
footer {
  font-size: 1.3rem;
  font-weight: 550;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
footer .contact-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}
.contact-icons img {
  width: 40px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
  padding: 3px 6px;
  border-radius: 10px;
  transition: opacity 0.5s ease-in-out, box-shadow 0.5s ease-in-out,
    transform 0.5s ease-in-out;
}
.contact-icons img:hover {
  opacity: 0.7;
  box-shadow: none;
  transform: scale(0.98);
}
form {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  border: none;
  border-radius: 20px;
  background-color: #26343b;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.8);
  width: 250px;
  height: 300px;
}
form label,
p {
  font-size: 1.2rem;
  font-weight: 570;
}
input {
  display: block;
  width: 100%;
  padding: 10px;
  margin: 10px 0px;
  font-size: 1.1rem;
  font-weight: 550;
  background-color: #3b4b52;
  color: #d5d8fe;
  border: none;
  outline: none;
  border-radius: 10px;
}
input:focus {
  outline: 1px solid #d5d8fe;
}
button {
  width: 70%;
  padding: 10px 5px;
  font-size: 0.9rem;
  font-weight: 550;
  background-color: #d5d8fe;
  box-shadow: 1px 2px 13px rgba(0, 0, 0, 0.8);
  color: #26343b;
  border: none;
  outline: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.5s ease-in-out, box-shadow 0.5s ease-in-out,
    transform 0.5s ease-in-out;
}
button:hover {
  opacity: 0.7;
  box-shadow: none;
  transform: scale(0.98);
}
#results-paragraph {
  transition: opacity 1s ease-in-out;
  min-width: 95%;
  min-height: 20%;
}
