@import url("https://fonts.googleapis.com/css2?family=Bungee+Shade&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap");

body {
  background: #fff;
  background: linear-gradient(to right, #f5f7fa, #c3cfe2);
  font-family: "Roboto", sans-serif;
}

h1 {
  text-align: center;
  margin-top: 50px;
  font-size: 52px;

  color: #2e2e2e;
  font-family: "Bungee Shade", cursive;
}

/* Form styles */
.form {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  width: 500px;
  margin: 0 auto;
  margin-top: 50px;
  padding: 20px;
  text-align: center;
}

.form label {
  display: inline-block;
  margin-bottom: 10px;
  color: #4d4d4d;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

.small_text {
  font-size: 18px;
}

.form input[type="text"],
.form select {
  font-size: 18px;
  padding: 10px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  margin-bottom: 20px;
  width: 80%;
  max-width: 400px;
  color: #4d4d4d;
  background-color: #f2f2f2;
}

.form button {
  font-size: 24px;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  background-color: #5289ff;
  color: #fff;
  box-shadow: 0 5px 0 #3b5ad6;
  cursor: pointer;
  transition: all 0.3s ease;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-family: "Roboto", sans-serif;
}

.form button:hover {
  background-color: #6c3bd6;
  box-shadow: 0 2px 0 #6c3bd6;
  transform: translateY(3px);
}

#robohash-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 20px;
}

.img-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px;
}

.img-container img {
  margin-top: 10px;
}

.findcaption {
  margin-top: 10px;
  font-weight: 900;
  font-size: 21px;
  color: rgb(0, 0, 0);
  text-align: center;
  text-shadow: 1px 1px rgba(255, 255, 255, 0.5);
}
