:root {
  --sidebar-items-hover-color: #ec4d37;
  --logo-hover-color: #f4b41a;
}

body {
  background-color: #f5f0e1;
}

#sidebar {
  position: fixed;
  background-color: #1d1b1b;
  color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  left: 0;
  top: 0;
  float: none;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
}

#sidebar #LogoSection {
  height: 100px;
  width: 200px;
  background-color: #141313;
  color: white;
  text-align: center;
  font-weight: bold;
  vertical-align: middle;
  cursor: pointer;
}
@media (pointer: fine) {
  #sidebar #LogoSection:hover {
    background-color: var(--logo-hover-color);
  }
}
@media (pointer:coarse) {
  #sidebar #LogoSection:hover {
    border: 2px ridge var(--logo-hover-color);
  }
}
#sidebar .navbar-toggler{
  background-color: #1b1919;
}

/* #sidebar #items {
  display: flex;
  flex-direction: row;
  justify-content: start;
} */

.section_button {
  font-weight: bold;
  color: lightgrey;
  text-align: center;
  border-top: 0.02rem #302d2d solid;
  border-bottom: 0.02rem #302d2d solid;
  padding: 10px;
  width: 100%;
}
.section_button .active{
  background-color: var(--sidebar-items-hover-color)!important;
  color: white;
}
.section_button:hover {
  background-color: var(--sidebar-items-hover-color);
  cursor: pointer;
  color: white;
}
.section_button:hover > span {
  border-bottom: 2px solid white;
  padding-bottom: 5px;
}

#social_icons {
  text-align: center;
  padding-top: 20px;
  font-size: 150%;
}
.social_icon {
  color: white;
}
.social_icon:hover {
  color: var(--logo-hover-color);
  cursor: pointer;
}

#Content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  height: 100%;
  background-color: #f5f0e1;
}
#Content iframe {
  width: 100%;
  height: 100%;
  border: 0px transparent solid;
}

@media (min-width: 992px) {
  #sidebar {
    display: flex;
    flex-direction: column;
    justify-content: start;
    position: fixed;
    left: 0;
    top: 0;
    float: none;
    height: 100%;
    width: 12%;
  }

  #sidebar #LogoSection {
    height: 200px;
    width: 100%;
    padding-top: 20%;
  }

  #sidebar #navbarNavItems {
    display: flex;
    flex-direction: column;
    justify-content: start;
  }

  #content {
    margin-left: 12%;
    width: 88%;
  }
}

#LogoSection{
  background-image: url("./Portfolio/Logo.png");
  background-size: 160px 80px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}