body {
    margin: 0;
    height: 100vh; 
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; 
    font-family: sans-serif;
}

.wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 900vh;
}


.social-icon {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  color: rgb(41, 127, 133);
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, #bb5bce 0%, #802b67 150%);
  color: white;
}



.social {
    margin-top: 30px;
}

.social a {
    display: inline-block; 
    margin: 5px 10px;
    margin-bottom: 20px;
    text-decoration: none;  
    color: inherit;          
}

.gradient-text {
  background: linear-gradient(90deg, #0d0e0f, #2c67aa); 
  -webkit-background-clip: text;   
  -webkit-text-fill-color: transparent; 
}



.base {
    max-width: 90%;
    width: 500px;
    height: auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.2); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.3); 
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 1;
    position: relative;
}

.background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
}



.header {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.header p {
    margin-top: 1px;  
}


.content {
    display: block;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.ava {
    border-radius: 60%;
    width: 40%;
    
}


.quote {
    border-right: 2px solid white;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    font-style: italic;
    font-size: 1.2em;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { border-color: transparent; }
    50% { border-color: white; }
}

@media (max-width: 600px) {
  body {
    height: auto;
    padding: 20px;
    overflow: auto;
  }

  .wrapper {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .base {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
  }

  .ava {
    width: 60%;
  }

  .social a {
    display: block;
    margin: 10px auto;
    text-align: center;
  }

  .header h1 {
    font-size: 1.6em;
  }

  .header p,
  .content p {
    font-size: 1em;
    margin: 10px 0;
  }

  .quote {
    font-size: 1em;
  }
}

