
:root {
    --textColor: white;
    --font: 'Karla', sans-serif;
}

html {
      
    font-family: var(--font);
    color: var(--textColor);
    font-size: 18px; 
    font-weight: 400;

    
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.userPage_backgroundVideo {
    bottom: 0;
    height: 100vh;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
    z-index: -1;
  }
  
body {
    margin: 10px auto;
}
div{
    overflow: hidden;
    height: 200px;
    width: 200px;
    position: relative;
    border-radius: 50%;
  
}
img {
    width: 100%;
    height: auto;

 
   
}

#userName {
    font-weight: 700; 
}

#description {
    margin: 20px auto;
}

main {
    width: auto;
    max-width: 500px;
    margin: 15px auto;
}


a {
    
    color: var(--textColor);
    text-decoration: none;
    text-align: center;

   
    border: 2px solid var(--textColor);
    border-radius: 10px;

    display: block;
    margin: 10px;
    padding: 10px; 
}
    