body {
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    text-align: center;
    font-family: 'arial';
    font-style: normal;
    font-weight: 400;
    font-size: 25px;
    letter-spacing: 2px;
    }
    img {
    border-radius: 50%;
    }
    .profile-picture {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    height: auto;
    max-width: 100px;
    }
    .profile-name {
    text-align: center;
    padding: 30px;
    font-size: 50px;
    font-weight: bold;
    }
    .links {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid rgb(116, 91, 201);
    border-width: 2px;
    width: 290px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    }
    a {
    text-decoration: none;
    color: rgb(0, 0, 0);
    transition: color 1s;
    }
    .bottom-text {
    text-align: center;
    margin-top: 40px;
    font-size: 50px;
    font-weight: bold;
    }
    a:hover {
    color: rgb(255, 255, 255);
    background: rgb(116, 91, 201);
    }