/* Platform || style.css */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0.03em;
  background: rgba(22, 27, 34, 1);
  color: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

main {
  display: flex;
}

#sideMenu {
  width: 300px;
  height: 100vh;
  background: #223;
  overflow-y: scroll;
}

#sideMenu::-webkit-scrollbar {
    width: 6px;
}

#sideMenu::-webkit-scrollbar-track {
    background: #555;
}

#sideMenu::-webkit-scrollbar-thumb {
    background: #888;
}

#sideMenu section {
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
}

#sideMenu section h3 {
  color: lightskyblue;
  text-shadow: 1px 1px 1px #000;
}

#closeSideMenu, #openSideMenu {
  position: absolute; 
  margin: 10px;
  padding: 5px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  font-size: 1.2em;
  background: rgba(0, 0, 0, 0.55);
  transition: .2s ease;
}

#closeSideMenu:hover, #openSideMenu:hover {
  color: #0ef;
}

ul {
  display: inline-block;
  padding-top: 10px;
  padding-left: 25px;
}

li {
  font-size: 0.875em;
  color: #eee;
  transition: .2s ease;
  cursor: pointer;
}

li:hover {
  transform: scale(1.04);
}

li.active {
  color: #0ef;
  font-weight: 600;
  text-shadow: 1px 1px 1px #000;
}

#navbar {
  position: relative;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  border-bottom: 1px solid lightgrey; 
  color: #fff; 
  align-items:center;
  text-align: center;
  font-family: Arial,sans-serif;
  padding: 5px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.5), 0 0 40px 0 rgba(0, 0, 0, 0.5), 0 0 60px 0 rgba(0, 0, 0, 0.5); 
  background:rgba(0,0,0,0.35); 
  letter-spacing: 1.1px; 
  font-size: 0.8125em;
}

#navbar a {
  cursor: pointer;
  transition: .2s ease;
}

#navbar a:hover {
  color: #0ef;
}

#navbar a i {
  color:#0ef; 
  font-weight:bold;
  transition: .2s ease;
}

#navbar a i:hover {
  transform: rotate(180deg);
}

a {
  text-decoration: none;
  color: #fff;
}

button {
  font-size: 1em;
  padding: 3px;
  cursor: pointer;
}

h1 {
  text-shadow: 0 1px 0 #000;
}
