body {
    background-color: black;
    
    color: #05C3F9;
    font-family: "Open Sans", sans-serif;

    letter-spacing: 2px;
}

.profile-picture {
    display: block;
    margin-left: auto;
    margin-right: auto;

    margin-top: 10px;
    height: auto;
    max-width: 200px;

}

.profile-name {
    text-align: center;

    margin-top: 10px;
    font-size: 28px;
}

.profile-name2 {
    text-align: center;

    padding: 4px;
    font-size: 18px;
    color: white;
}

.links {
   text-align: center;
   margin-top: 20px;
   border: 1px solid #05C3F9;
   border-width: 2px;
   padding: 20px;

   width: 290px;
   display: block;
   margin-left: auto;
   margin-right: auto;

   border-radius: 40px;

   font-size: 18px;
}

a {
  text-decoration: none;
  
  color: white;
  transition: color 1s;
}

a:hover {
    color: black;

    background-color: #05C3F9;
}