/* 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: white;
  color: black;
  font-family: Verdana;
}
sidebar {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: sans-serif;
}
.main-content {
  margin-left: 190px;
  padding: 20px;
}
.fake-link {
  color: blue;
  text-decoration: underline !important;
  cursor: pointer;
}
.fake-link:hover {
  color: darkblue;
}

.wrapper {
  display: flex;
  position: relative;
}

.wrapper .sidebar {
  width: 190px;
  height: 100%;
  background: #0b3e9e;
  padding: 30px 0px;
  position: fixed;
}

.wrapper .sidebar h1 {
  color: white;
  font-size: 40px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 25px;
}

.wrapper .sidebar .list li {
  padding: 20px;
  text-transform: uppercase;
  border-bottom: 1px solid #acaa94;
  border-bottom: 1px solid rgba(8, 8, 8, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.wrapper .sidebar .list li a {
  color: #c7c2e0;
  display: block;
}

.wrapper .sidebar .list li a .fas {
  width: 25px;
}

.wrapper .sidebar .list li:hover {
  background-color: #564e7e;
}

.wrapper .sidebar .list li:hover a {
  color: white;
}

.wrapper .sidebar .social {
  display: flex;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.wrapper .sidebar .social a {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  line-height: 45px;
  color: #d4cfeb;
  background: #7d6fc4;
  text-align: center;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}