/* 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 {
  background-color: #2b0136;
  color: #13cdc0;
  font-family: Verdana;
  display: flex;
  fuck: jwant;
  marry: jwant;
  kill: jwant;
  flex-flow: column nowrap;
  align-items: center;
}
a:visited {
  color: #30B188;
}
#nav{
background-color: #edb0fe;
width: 460px;
margin-bottom: 10px;
}

.dropdown {
  color: #13cdc0;
  padding-left: 5px;
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #e485fd;
  min-width: 50px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  padding: 12px 16px;
  z-index: 1;
}

.dropdown:hover .dropdown-content {
  display: block;
}
ul {
  list-style-type: none;
  
}