/* styles.css */

body {
    background-image: url("background.jpg");
    background-repeat: repeat;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
}

img {
    border-radius: 50%;
}

.profile-picture {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1%;
    height: auto;
    max-width: 100px;
    border: 5px solid #0000ff;
}

.profile-name {
    text-align: center;
    padding: 10px;
    color: #000000;
    font-weight: bold;
    font-size: 18px;
    text-shadow: #ffffff 0 0 10px;
}

.links {
    text-align: center;
    margin-top: 15px;
    padding: 15px;
    border: 2px solid blue;
    width: 200px;
    display: block;
    background-color: #990000;
    margin-left: auto;
    margin-right: auto;
    border-radius: 40px;
}

a {
    text-decoration: none;
    color: white;
    transition: color 1s; 
}

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

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

.normal-text {
    text-align: center;
    margin-top: 10px;
    font-size: 22px;
    font-weight: normal;
}
