*{
    list-style: none;
    text-decoration: none;
    padding: 0;
    margin: 0;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-image: url('https://64.media.tumblr.com/80445f1863bcd46a23649c4207dfbcdc/6a7f6262a85436c6-4f/s2048x3072/df474ee45ec6cfd1597befd73d882514a01c2384.jpg');
  background-size: cover;       
  background-position: center;  
  background-repeat: no-repeat; 
  background-color: #121212;
  color: #fff;
  height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes bgMove {
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.container {
  background: rgba(15, 60, 25, 0.35);
  border: 2px solid rgba(120, 255, 120, 0.25);
  box-shadow: 0 0 25px rgba(0, 255, 120, 0.15);
  backdrop-filter: blur(18px);
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  width: 300px;
  max-width: 80%;
  transition: all .3s ease;
}

.container:hover {
  box-shadow: 0 0 35px rgba(0, 255, 120, 0.25);
  border-color: rgba(120, 255, 120, 0.4);
}

.profile {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: contain;
  background: rgba(255,255,255,0.05);
  padding: 10px;
  border: 2px solid rgba(120, 255, 120, 0.35);
}

.social-media {
  display: flex;
  justify-content: center;

  div {
    width: 100%;
    max-width: 1500px;

    ul {
      display: flex;
      justify-content: center;
      gap: 20px;

      a {
        transition: all .5s ease;
      }

      a:hover {
        transform: translateY(-4px) scale(1.08);
      }

      li {
        cursor: pointer;
        color: #b6e7b6;
        
        .bx {
          font-size: 1.9rem;
          color: #9dff9d;
          text-shadow: 0 0 6px rgba(0, 255, 120, 0.5);
        }
      }
    }
  }
}

.sub-title {
  margin-bottom: 20px;
  color: #d5ffd5;
}

.link {
  display: flex;
  justify-content: center;
  align-items: center;
  
  padding: 10px 15px;
  border-radius: 25px;
  margin: 18px 0px;
  text-decoration: none;
  height: 45px;

  background: rgba(20, 80, 35, 0.4);
  border: 1px solid rgba(120, 255, 120, 0.3);

  color: #e8ffe8;
  gap: 10px;    
  transition: all .35s ease;
}

.link:hover {
  transform: scale(1.1);
  border-color: rgba(120, 255, 120, 0.6);
  box-shadow: 0 0 12px rgba(0, 255, 120, 0.3);
}

.link i {
  font-size: 24px;
  color: #baffba;
}

.link p {
  margin: 0;
  color: #e8ffe8;
}

.btn-voltar {
  display: flex;
  justify-content: center;
  align-items: center;

  padding: 10px 15px;
  border-radius: 25px;
  margin: 24px 0;

  text-decoration: none;
  height: 45px;

  background: rgba(20, 80, 35, 0.4);
  border: 1px solid rgba(120, 255, 120, 0.3);

  color: #e8ffe8;
  font-size: 16px;

  transition: all .35s ease;
}

.btn-voltar:hover {
  transform: scale(1.05);
  border-color: rgba(120, 255, 120, 0.6);
  box-shadow: 0 0 12px rgba(0, 255, 120, 0.3);
}
