@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&family=Poppins:ital,wght@1,100&family=Press+Start+2P&display=swap');


body{
    background-repeat: no-repeat;
    background-size: cover;
    height: 98.2vh;
    background-position: center;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
  }
  

.profile-card{
    height: 420px;
    width: 400px;
    background-color: rgba(255,255,255,0.07);
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 0 0 40px rgba(8,7,16,0.6);
}

.profile-card *{
    font-family:'Courier New', Courier, monospace;
    color: white;
    letter-spacing: 0.5px;
    outline: none;
    border: none;
}

.pic img{
    padding-top: 10px;
    margin-right: auto;
    margin-left: auto;
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.name{
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.descri{
    font-family: 'Poppins', sans-serif;
    text-align: center;
    font-size: small;
}

.sm {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    margin-top: 55px;
    margin-left: 38px;
    margin-right: auto;
    text-decoration-thickness: 2px;
}
.sm a{
    color: hsla(0, 0%, 100%, 0.774);
    width: 65px;
    font-size: 37px;
    transition: .3s linear;
}

.sm a:hover{
    color: #e66767;
}

:root {
    --text-color: hsla(210, 50%, 85%, 1);
    --shadow-color: hsla(210, 40%, 52%, .4);
    --btn-color: hsla(253, 61%, 6%, 0.425);
    --bg-color: #141218;
  }
  
button {
    position:relative;
    padding: 10px 20px;  
    border: none;
    background: none;
    cursor: pointer;
    margin-top: 30px;
    margin-left: 128px;
    margin-right: auto;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    font-size: 15px;  
    color: var(--text-color);
    
    background-color: var(--btn-color);
    box-shadow: var(--shadow-color) 2px 2px 22px;
    border-radius: 4px; 
    z-index: 0;  
    overflow: hidden;   
  }
  
  button:focus {
    outline-color: transparent;
    box-shadow: var(--btn-color) 2px 2px 22px;
  }

button::before {
  content: '';
  pointer-events: none;
  opacity: .6;
  background:
    radial-gradient(circle at 20% 35%,  transparent 0,  transparent 2px, var(--text-color) 3px, var(--text-color) 4px, transparent 4px),
    radial-gradient(circle at 75% 44%, transparent 0,  transparent 2px, var(--text-color) 3px, var(--text-color) 4px, transparent 4px),
    radial-gradient(circle at 46% 52%, transparent 0, transparent 4px, var(--text-color) 5px, var(--text-color) 6px, transparent 6px);

  width: 100%;
  height: 300%;
  top: 0;
  left: 0;
  position: absolute;
  animation: bubbles 5s linear infinite both;
}

@keyframes bubbles {
  from {
    transform: translate();
  }
  to {
    transform: translate(0, -66.666%);
  }
}

