body {
  background-image: url("https://projects.codecraftworks.com/web/ami8PWCOblILvqDX8t3o/assets/pexels-lisa-fotios-1921336.jpg");
  background-repeat:no-repeat;
  background-size:cover;
}

h2 {
 text-align:center;
}
hr {
 background-color: rgb(255,255,255, 0.1); 
 border: none;
 height: 1px;
 margin: 15px 0px;
 border-radius: 50% 50% 5% 5%; 
}

#header {
 background: linear-gradient(to top right, purple, tan, lightpink);
  background-color: blue;
  padding: .5px; 
	margin: 5vh 20vw;
  border-radius: 4em; 
  position:-webkit-sticky;
  position: sticky;
  Top:0;
  text-decoration:underline lightpink;
  text-align:center;
}

#list {
  background: linear-gradient(to bottom right, purple, tan, lightpink);
  background-color: blue;
  padding: .5px; 
  text-align: center;
	margin: 0vh 20vw;
  border-radius: 4em; 
  height: 37em;
}

.flexbox {
  display:flex;
  flex-flow:column nowrap;
  justify-content:center;
  align-items:baseline;
  align-content:flex-start;
  gap:.5px 10px;
  flex-grow:2;
  flex-shrink:5;
  flex-basis: auto;
}

@media (min-width: 10em) {
  .container {
    max-width: 50em;
  }
}

a {
  color: lightblue;
  
}

a:hover {
  color: tan
}

a:pressed {
  color:purple;
}