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

body {
  max-width: 768px;
  margin: auto;
  color:#FFFFFF;
  background-color:#F5BADD;
  font-family:Verdana
}

nav {
  text-align:center
}
h1 {
  text-align:center
}

.item {
  border: 2px solid rgb(95 97 110);
  border-radius: 0.5em;
  padding: 20px;
  width: 10em;
}

.container {
  border: 2px solid rgb(75 70 74);
  border-radius: 0.5em;
  font: 1.2em sans-serif;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color:#000000;
  background-color: #FFFFFF;
  text-shadow: 0px 0px 0px black;
  vertical-align:top
}

a:link {
  color: green;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: pink;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

a:active {
  color: yellow;
  background-color: transparent;
  text-decoration: underline;
}

