body {
    background-image: url(assets/bg.jpeg);
    background-position: center center;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 20vh;
    background-repeat: no-repeat;
    background-attachment: fixed;
  
    /* This is what makes the background image rescale based on its container's size */
     background-size: cover;
}

img {
    border-radius: 50%;
}

.profile-picture {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10%;
    height: auto;
    max-width: 100px;
}
    
.profile {
    text-align: center;
    font-size: 15px;
    letter-spacing: 2px;   
    margin: 0;
    color: white;
}

a.profile:hover{
    color: #000;
}

.name{
    padding: 30 30 7 30px;

}

.motto{
    padding: 7 30 30 30px;
    font-weight: normal;
}

.header{
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    max-width: 90vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 105%;
}

.links {
    text-align: center;
    margin-top: 20px;
    padding: 20px;
    border: 1px solid white;
    border-width: 2px;
    width: 290px;
    max-width: 60vw;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
    text-decoration: none;
    color : white;
}

a {
    color: white;
    transition: color 0.5s;
}

a.links:hover {
    color: #000;
    background: #fff;
}

.fa_custom {
    color: #6224f1;
    margin-top: 60px;
    text-align: center; 
    width: 100%; 
}

a i:hover{
    color: #fbdd3b;
}

.bottom-text {
    text-align: center;
    margin-top: 40px;
    font-size: 20px;
    font-weight: bold;
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
  body {
    /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
    background-image: url(assets/bg.jpeg);
  }
    }