/* 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." */

@font-face {
  font-family: myFont; /* set name */
  src: url('Daydream-DEMO.otf') format('opentype');
}

main {
}

body {
  text-align: center;
  background-image: url('Starry background.gif');
  color: black;
  font-family: Verdana;
  margin: auto;
}

h1 {
  
  color: magenta;
}

h2 {
  color: magenta;
  font-family: myFont;
}

h3 {
  text-align: center;
  color: magenta;
}

p {
  color: magenta;
  text-align: left;
}

.arrow {
  text-align: right;
}

footer {
  margin: 10pt;
  border-top: 3.5pt dashed blue;
  padding: 10pt;
  color: white;
}

#about {
  color: white;
}

.outer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-items: flex-start;
  width: 1200px;
  height: 900px;
  border: 3.5px dotted blue;
  margin: 30px auto;
  padding: 20px;
  border-radius: 10pt;
}

.hello {
  width: 300px;
  height: 400px;
  margin: 5px;
  padding: 7px;
  border: 3.5px dotted blue;
  color: magenta;
  border-radius: 10pt;
}

.sidebar {
  
}

.interests {
  text-align: left;
  list-style-position: inside;
  width: 300px;
  height: 400px;
  margin: 5px ;
  padding: 7px;
  border: 3.5px dotted blue;
  color: magenta;
  border-radius: 10pt;
}

.header {
  display: flex;
  justify-content: space-evenly;
  width: 920pt;
  margin: 0px auto;
  padding: 0px;
  border: 3.5px dotted blue;
  color: magenta;
  border-radius: 10pt;
}

.counter {
  width: 300px;
  margin: 5px;
  padding: 7px;
  border: 3.5px dotted blue;
  color: magenta;
  border-radius: 10pt;
}

.image-of-the-month {
  width: 500px;
  height: 400px;
  margin: 5px;
  padding: 7px;
  border: 3.5px dotted blue;
  color: magenta;
  border-radius: 10pt;
}
