* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --text-color: white;
}

body {
  background-image: url(/Image/Background\ dark.jpg);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-size: 100% 120% auto;
}
body * {
  font-family: "Instrument Sans", sans-serif, color white;
  font-optical-sizing: auto;
  color: var(--text-color);
}
#container {
  width: 560px;
  height: 1100px;
  margin: auto;
  padding: 100px;
  padding-top: 80px;
  margin-right: auto;
  margin-bottom: auto;
  margin-left: auto;
}
#profile a {
  text-align: center;
  padding: 4px;
  text-decoration: none;
}
#profile p {
  color: white;
  margin-top: 1px;
  line-height: 24px;
  font-weight: 500px;
}
#profile img {
  width: 150px;
  border-radius: 50%;
  position: relative;
  margin: auto;
  display: block;
} 
/* botão para realizar a troca da cor
#switch button{
width: 32px ;
height: 32px;
background: rgb(255, 255, 255, 1) url(assets/assets/moon-stars.svg) no-repeat center;
border: 0;
border-radius: 50px;
}
#switch span{
  display: block;
  width: 65px;
  height: 24px;
  background: white;
  backdrop-filter: blur(4px);
  border-radius: 9999px;
}
*/
a {
  color: rgb(255, 255, 255);
}

ul {
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
}
ul li a {
  border: 1px solid black;
  display: flex;
  text-align: center;
  justify-content: center;
  padding: 16px 24px;
  align-items: center;
  background: rgba(255, 255, 255, 0.226);
  border: 1px solid var(--text-color);
  border-radius: 8px;
  backdrop-filter: blur(4px);

  text-decoration: none;
  font-weight: 500;
  transition: all 0.5s background 0.2s;
}

ul li:hover {
  background: rgb(255, 255, 255, 0.05);
  border: 1.5px solid white;
  border-radius: 8px;
}
#social-links {
  display: flex;
  justify-content: center;

  padding: 10px 0;
  font-size: 24px;
}
#social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  transition: background 0.2s;
  border-radius: 50px;
}

#social-links a:hover {
  background: rgb(255, 255, 255, 0);
  padding: 16px;
}

@media screen and (max-width: 900px) {
  html {
    height: 1500px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow-x: hidden;
  }
  #container {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
    width: 700px;
    height: 1000px;
    margin: 0 auto;
    padding: 100px;
    padding-top: 80px;
    margin-right: auto;
    margin-bottom: auto;
    margin-left: auto;
  }
  .desktop {
    position: relative;
    align-items: center;
    justify-content: center;
    height: 190vh;
    display: flex;
    font-size: 10px;
    overflow-x: hidden;
  }
  ul {
    width: 235px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
}
#descricao i {
  text-align: center;
}