@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-image: url("../assets/background.png");
  background-size: cover;
}

.content {
  width: 100%;
  height: 100%;
  display: flex;
}

.sidebar {
  width: auto;
  display: grid;
  padding: 1rem;
  box-sizing: border-box;
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: #FFF;
  border-radius: 25px;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  margin: 1rem;
  margin-right: 0px;
}

.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 {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  color: #FFF;
  transition: .7s ease;
  font-size: 15px;
}

.navitem:hover {
  transform: scale(1.5);
  border-color: rgba(255,255,255,.6);
  box-shadow: 0 15px 35px rgba(0,0,0,.6);
}

.loading {
  background: #000;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 10;
  flex-direction: column; 
}

.loading p {
  color: #FFF;
  font-size: 16px;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top: 3px solid #FFF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 0.75rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}