@import url("https://fonts.googleapis.com/css2?family=Saira+Semi+Condensed:wght@200&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Saira Semi Condensed", sans-serif;
}
html, body{
  overflow-x: hidden;
}
body {
  background-color: #100720;
  position: relative;
}
.background_image {
  width: 100%;
  height: 100vh;
  background-image: url(../images/valeriia-neganova-LDqXf3BR0kc-unsplash.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.container {
  max-width: 350px;
  width: 100%;
  padding: 20px 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  overflow: hidden;
  z-index: 1;
}
.information {
  width: 100%;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #f47c7c;
  color: #eeeeee;
}
.avatar_user {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  margin-top: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background-image: url(https://github.com/brenordev.png);
  background-position: center;
  background-size: cover;
}
.avatar_user img {
  width: 100%;
}
.info_user {
  width: 100%;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
}
.info {
  border-radius: 3px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.contents_info:hover {
  background-color: #ededed;
}
.contents_info:hover .icon,
.contents_info:hover span {
  color: #f47c7c;
}
.contents_info .icon{
  transition: all 0.5s ease;
}
.info .icon {
  font-size: 1.5rem;
  color: #eeeeee;
  margin: 0 5px;
  transition: all 0.5s ease;
}
.info span {
  padding: 0 10px;
  font-size: 0.9rem;
  color: #eeeeee;
  transition: all 0.5s ease;
}
.contents_info {
  width: 100%;
  height: 50px;
  border-radius: 3px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 5px 0;
  position: relative;
  transition: all 0.5s ease;
}
.social_midia .link_social {
  margin: 0 5px;
  margin-top: 5px;
}
.contents_info .link_social:hover {
  filter: brightness(1.5);
}
.link_spotify {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  border-radius: 3px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  background-color: #1db954;
}

.link_spotify:hover {
  background-color: #5bb318;
}
.link_spotify .icon {
  font-size: 1.5rem;
  color: #fff;
  margin: 0 5px;
  transition: all 0.5s ease;
}
.link_spotify:hover .icon {
  color: #fff;
}
.footer {
  width: 100%;
  height: 3rem;
}
.copyright {
  height: 100%;
  font-size: 0.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #e1e8eb;
}
.circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  position: absolute;
  top: 80%;
  left: 41%;
  transform: translate(-50%, -50%);
  background: #d66d75; 
  background: -webkit-linear-gradient(
    to right,
    #e29587,
    #d66d75
  );

  background: linear-gradient(
    to right,
    #e29587,
    #d66d75
  );
}
.setup{
  cursor: pointer;
}

.setup_modal{
  width: 20rem;
  height: 42rem;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: #100720;
  text-align: center;
  color: #e1e8eb;
  display: none;

}
.show_modal{
  display: block;
  animation: showModal 1s ease;
}
.setup_item{
 color: #e1e8eb;
 display: flex;
 justify-content: center;
 align-items: center;
 padding: 0 20px;
 margin: 5px 0;
}
.title_modal{
  margin: 20px 0;
}
.item_span{
  width: 100%;
  display: flex;
  gap: 5px;
  font-size: .8rem;
  padding: 10px 5px;
  background-color: rgba(9, 4, 17, 0.2);
}
.setup_item img{
  width:25px;
  display: flex;
}
.item_span .img_ram{
  width: 17px;
  margin: 0 2px;
}
.btn{
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  padding: 4px 12px;
  background-color: #d66d75;
  color: #e1e8eb;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}
@keyframes showModal {
  0%{
    opacity: 0;
    position: absolute;
    
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  50%{
    opacity: 1;
  }
  100%{
    /* top: 1px; */
  }
}