/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@import url('https://fonts.googleapis.com/css2?family=Spectral&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200&display=swap');

h1 {
  font-family: 'Spectral', serif;
}

h2 {
  font-family: 'Spectral', serif;
}

body {
  padding: 50px;
  min-height: 100vh;
  font-family: 'Nunito', sans-serif;
  background-image: linear-gradient(to bottom, powderblue, BlueViolet);
  height:auto;
}

div {
  padding-top: 50px;
  padding-right: 30px;
  padding-bottom: 50px;
  padding-left: 30px;
  margin: 20px;
  
  border: 3px lightblue dotted;
  border-radius: 5px;
  min-width: 300px;
  max-width: auto;
  background-color: white; 
}



img {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

/* Dashed blue border */
.bluedashed {
  border-top: 1px dashed lightblue;
}




/* NOTES

background-image: linear-gradient(to bottom, #27BAE1 0%, #B9FCDF 80%, #7ECB86 100%);

*/


