* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
}
body {
  font-family: "Helvetica Light", "Helvetica", "Arial", sans-serif;
  font-weight: 300; 
}

@media (max-width: 1200px) {
  html {
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  html {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 10px;
  }
}
@media (max-width: 400px) {
  html {
    font-size: 9px;
  }
}

body {
  font-family: sans-serif;
}
.container {
  display: flex;
}
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 20%;
  height: 100vh;
  background-color: #111111;
  padding: 1.25rem;
  color: #fff;
  text-align: center;
  box-shadow: 3px 0 5px rgba(0, 0, 0, 0.1);
}
.profile {
  margin-top: 2.5rem;
}
.profile-pic {
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background-color: #333;
  margin: 0 auto 0.625rem;
  overflow: hidden;
}
.profile-info {
  margin-bottom: 2.5rem;
}
.profile-name {
  font-weight: bold;
  margin-bottom: 0.3125rem;
}
.profile-title {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.25rem;
  margin-top: 0.2rem !important;
}
.menu {
  margin-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.menu-link {
  display: flex;
  align-items: center;
  justify-content: left;
  color: #fff;
  text-decoration: none;
  padding: 0.5rem;
  transition: background 0.3s;
  margin: 0.3125rem 0;
}
.menu-text{
  color: #ffffffd1;
}
.menu-icon{
  color: #ffffffb9;
}
.menu-link:hover {
  .menu-text{
    color: #fff;
  }
  .menu-icon{
    color:#fff;
  }
}
.menu-icon {
  margin-right: 0.625rem;
}
.content {
  margin-left: 20%;
  width: 80%;
  min-height: 100vh;
  padding: 2rem;
  background: radial-gradient(circle at center, rgba(149,65,207,1) 0%, rgba(21,21,19,1) 50%);
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 50rem) {
  .container {
    flex-direction: column;
  }
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    padding: 0.625rem;
  }
  .content {
    margin-left: 0;
    width: 100%;
    padding: 0.625rem;
    background: radial-gradient(circle at center, rgba(149,65,207,1) 0%, rgba(21,21,19,1) 40%);
    background-position: center;
    background-repeat: no-repeat;
  }
  .profile-pic {
    width: 6.25rem;
    height: 6.25rem;
    margin-bottom: 0.625rem;
  }
}
.site-footer {
  background-color: #111111;
  padding: 20px 0;
  text-align: center;
}

@media (min-width: 50rem) {
  .site-footer {
    margin-left: 20%;
    width: 80%;
  }
}

.footer-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 6rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 1);
}



img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

h1,p{
  color: #fff;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
