:root {
  /*Mobile*/
  font-size: 11px;
}

body {
  background-image: -webkit-linear-gradient(90deg, #101214b7, #5a5e68bf);
  background-attachment: fixed;
}

.header {
  align-self: flex-start;
  font-size: 2rem;
  color: #f0f0f0;
  width: -moz-fit-content;
  width: fit-content;
}

@media (min-width: 700px) {
  :root {
    font-size: 6px;
  }
}

@media (min-width: 800px) {
  :root {
    font-size: 6px;
  }
}
@media (min-width: 900px) {
  :root {
    font-size: 7px;
  }
}

@media (min-width: 1000px) {
  :root {
    font-size: 8px;
  }
}

@media (min-width: 1100px) {
  :root {
    font-size: 9px;
  }
}

@media (min-width: 1200px) {
  :root {
    font-size: 10px;
  }
}
@media (min-width: 1300px) {
  :root {
    font-size: 11px;
  }
}
@media (min-width: 1470px) {
  :root {
    font-size: 12px;
  }
}

@media (min-width: 1570px) {
  :root {
    font-size: 14px;
  }
}

@media (min-width: 1670px) {
  :root {
    font-size: 14px;
  }
}

@media (min-width: 1870px) {
  :root {
    font-size: 15px;
  }
}
@media (min-width: 1970px) {
  :root {
    font-size: 15px;
  }
}
@media (min-width: 2070px) {
  :root {
    font-size: 16px;
  }
}
@media (min-width: 2170px) {
  :root {
    font-size: 17px;
  }
}
@media (min-width: 2270px) {
  :root {
    font-size: 20px;
  }
}
@media (min-width: 2560px) {
  :root {
    font-size: 21px;
  }
}
@media (prefers-color-scheme: dark) {
  html {
    color-scheme: dark;
  }
}

.sidebar-container {
  position: fixed;
  width: 100%;
  height: 4rem;
  bottom: 0%;
  left: 0;
  background-color: #111111;
  z-index: 1;
}

.Logo {
  display: none;
}

.logo-button {
  display: block;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  cursor: pointer;
  width: 100%;
}

.logo-image {
  display: none;
}

.socialLogos {
  width: 7rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.sidebar {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}

.sidebar li {
  list-style: none;
}

.sidebar ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  padding-left: 0.5rem;
}

.sidebar a {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  text-decoration: underline;
  height: 3rem;
  text-wrap: nowrap;
  color: #f0f0f0a1;
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Oxygen,
    Ubuntu,
    Cantarell,
    "Open Sans",
    "Helvetica Neue",
    sans-serif;
}

.socialLogo {
  width: 3rem;
}

.socialLogoBmac {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-width: 5.4rem;
  min-height: 1.8rem;
  padding: 0.18rem 0.4rem;
  border-radius: 999px;
  border: 2px solid #f6d36b;
  background: #0f0f0f;
  color: #f6d36b;
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
}

.socialLogoBmac:hover {
  background: #171717;
  color: #ffdd66;
  border-color: #ffdd66;
}

.sidebar a:hover {
  color: #f1f1f1;
}

@media (min-width: 700px) {
  .sidebar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    height: 100vh;
    width: 9rem;
    top: 0;
    left: 0;
    background-color: #111111;
    overflow-x: clip;
    z-index: 1;
  }

  .sidebar ul {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 11rem;
    gap: 0.5rem;
  }

  .sidebar {
    display: flex;
    flex-direction: column;
  }

  .sidebar a {
    font-size: 1.4rem;
    text-decoration: none;
    height: 2.1rem;
    font-weight: 330;
  }

  .sidebarLinks {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .socialLogos {
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0.85rem;
    margin-top: 3.2rem;
  }
  .socialLogo {
    width: 2.2rem;
  }

  .socialLogoBmac {
    min-width: 5.8rem;
    min-height: 1.75rem;
    font-size: 0.64rem;
    padding: 0.16rem 0.3rem;
  }

  .Logo {
    display: block;
    margin-top: 1.5rem;
  }

  .logo-image {
    display: block;
    width: 100%;
    height: auto;
  }
}

