@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  list-style-type: none;
}

body {
  width: 100%;
  height: 100vh;
  position: relative;
}

/* SIDEBAR-CONTAINER */
.sidebar-container {
  width: 220px;
  height: 100vh;
  background-color: #182723;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 2px 0 10px rgba(128, 128, 128, 0.507);
  transition: 0.5s;
  z-index: 10;
  position: absolute;
}

/* TOGGLE */
.toggle {
  position: absolute;
  top: 10px;
  right: -37px;
  z-index: -1;
  background-color: #191e24;
  height: 35px;
  width: 40px;
  border-radius: 0 10px 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px;
  flex-direction: column;
  cursor: pointer;
}

.lines {
  width: 60%;
  height: 2px;
  display: block;
  background-color: grey;
  padding-right: 10px;
}

.toggle-function {
  transform: translate(-220px, 0);
  transition: 0.5s;
}

/* PROFILE CARD */
.profile-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px 0;
  margin-bottom: 20px;
  /*background-image: url('https://i.postimg.cc/7YXvc2LV/blob-scene-haikei.png');*/
  /*background-image: url('https://img.freepik.com/free-vector/ombre-green-abstract-background_53876-116698.jpg');*/
  /*background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTWgWYJJBu277QLjEoEl75UufKCaSPNNn_tRYJaup4jLUTSVvNJ8nTs-RZSAfeH575IODE&usqp=CAU');*/
  background-image: url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRftDr4FknKNPkUYUP1TPA76tTtIK7xN1wE64-u-h3r3fEUBLRxGlI3tCS8JVml7jOhXso&usqp=CAU');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.profile-card .title {
  margin-top: 5px;
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #191e24;
}

.profile-card .subtitle {
  font-weight: 300;
  font-size: small;
  letter-spacing: 1px;
}

/* LIST CONTAINER */
.links-list li a,
.signout a,
.social-media-icons {
  color: lightgray;
  margin-left: 25px;
  display: block;
  font-weight: 300;
  padding: 5px 0;
  font-size: medium;
  transition: ease-in-out 0.2s;
}

.links-list i,
.signout i {
  color: lightgray;
  margin-right: 10px;
}

.links-list li :hover,
.signout a:hover {
  color: white;
  font-weight: 600;
  transition: ease-in-out 0.2s;
}

.links-list li {
  width: 100%;
  margin-top: 10px;
}

.links-list li:nth-child(5) {
  padding-top: 10px;
  border-top: 1px rgba(128, 128, 128, 0.15) solid;
}

.signout {
  border-top: 1px rgba(128, 128, 128, 0.15) solid;
  padding: 10px 0;
}

.social-media-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: large;
  padding: 20px 0;
}
.social-media-icons a {
  color: lightgray;
}

.social-media-icons a:hover {
  color: white;
}

footer {
  text-align: end;
  padding: 40px;
  position: absolute;
  bottom: 5px;
  right: 0;
}

footer a {
  color: grey;
}