@charset "UTF-8";

body {
  background-image: linear-gradient(
    to bottom,
    rgb(178, 252, 252),
    rgb(200, 238, 250),
    rgb(216, 247, 248)
  );
  background-attachment: fixed;
}

main {
  background-color: rgb(156, 194, 206);
  border-radius: 20px;
  width: 500px;
  height: 20em;
  padding: 2em;
  box-shadow: 10px 10px 10px rgb(1, 117, 117);
  margin: auto;
  margin-top: 5em;
}


h1 {
  color: white;
  text-align: center;
  text-shadow: 5px 5px 10px rgb(17, 163, 163);
  font-size: 2.4em;
  font-family: "Roboto Slab", serif;
}

p {
  color: white;
  font-size: 1.4em;
  text-shadow: 10px 10px 10px rgb(44, 117, 165);
  text-align: center;
  font-family: "Roboto Slab", serif;
  
}




