@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");

@font-face {
  font-family: 'Material Symbols Rounded';
  font-style: normal;
  font-weight: 100 700;
  src: url(https://fonts.gstatic.com/s/materialsymbolsrounded/v190/sykg-zNym6YjUruM-QrEh7-nyTnjDwKNJ_190Fjzag.woff2) format('woff2');
}

* {
  font-family: "Montserrat", Segoe UI, -apple-system, BlinkMacSystemFont, Ubuntu, sans-serif;
  user-select: none;
  box-sizing:border-box;
}

.google-icons {
  font-family: 'Material Symbols Rounded';
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  display: flex;
  background: #111;
}

.sidebar {
  width: auto;
  height: 100%;
  display: grid;
  padding: 1rem;
  box-sizing: border-box;
  background: #000;
  border-right: 1px solid #333;
  color: #FFF;
  align-items: center;
  justify-content: center;
}

.sidebar-top {
  height: 100%;
  display: grid;
  align-items: start;
  justify-content: center;
}

.sidebar-center {
  height: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
}

.sidebar-right {
  height: 100%;
  display: grid;
  align-items: end;
  justify-content: center;
}

.navitems {
  display: grid;
  gap: 0.5rem;
}

.navitem {
  text-decoration: none;
  color: #FFF;
  transition: .7s;
}

.navitem:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,.6);
  box-shadow: 0 15px 35px rgba(0,0,0,.6);
}