/* 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: #ED7BED;
  background-image: url("images/astoko-bokeh-4537112_1920.jpg");
  background-repeat: repeat;
  background-position: left top;
  background-attachment: fixed;
  color: black;
  font-family:"Helvetica", "HKGrotesk Light", "Segoe UI", "Arial"
}

nav {
  display: flex;
  margin: -5px;
  padding: 10px;
  background-color: #901490;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav h1 {
  color: white;
}

nav ul {
  list-style-type: none;
  /*margin: -5px;*/
  /*padding: 10px;*/
  /*background-color: #901490;*/
  display: flex;
  justify-content: flex-end;
  /*align-items: flex-start;*/
}

nav ul li a {
  display: block;
  color: white;
  padding: 14px 16px;
  text-decoration: none;
}

nav ul li a:hover {
  background-color: #B819B8;
}

img {
  opacity: 1.0;
}

.flexRow {
  display: flex;
  flex-direction: row;
}

.flexDiv {
  display: flex;
  align-self: flex-start;
  padding: 20px;
}

.sidebar {
  background: rgba(255,255,255,0.6);
  width: 20%;
  margin: 2.5%;
  text-align: left;
  font-size: 1.5rem;
  align-content:center;
}

.sidebar ul {
  list-style: url('images/IMG_0050.png');
  align-content: center;
  width: 100%;
}

.sidebar li a {
  
  text-decoration: none;
}
.container {
  background: rgba(255,255,255,0.6);
  width: 60%;
  margin-top: 2rem;
}

















