:root {
  --bg1: #0F1011;
  --bg2: #121314;
  --bg3: #242425;
  --bg4: #2c2e33;
  --bg5: #444444;
  --accent1: #fff;
  --accent2: #f2cf65;
}

* {
  font-family: 'Rubik', sans-serif;
}

body {
  margin: 0;
  padding: 0;
  background-color: var(--bg1);
  display: flex;
  flex-direction: row;
  min-height: 100vh;
}

.material-symbols-rounded {
  user-select: none;
  font-variation-settings:
  'FILL' 1,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 15px 30px;
  align-items: center;
  background-color: var(--bg2);
  width: 300px;
}

.nav_icon {
  margin: 30px 0;
  width: 100px;
  transition: 0.1s all;
}

.nav_icon:hover {
  transform: scale(1.04);
}

.nav_icon_img {
  width: 100%;
  height: 100%;
}


.nav_btn {
  color: var(--accent1);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: start;
  padding: 8px 100px 8px 10px;
  border-radius: 10px;
  font-size: 22px;
  font-weight: 350;
  transition: 0.1s all;
  width: 100%;
  box-sizing: border-box;
}

.nav_btn:hover {
  background-color: var(--bg3);
  transform: scale(1.02);
}

.nav_btn_icon {
  font-size: 27px;
}

footer {
  height: 7dvh;
  margin-top: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

#site_footer p {
  color: rgb(158, 158, 158);
  font-size: 15px;
  font-weight: 650;
}