body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: pink;
    color: black;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    text-align:  center;
}

.container{
    max-width: 400px;
    margin: auto;
    background-color: whitesmoke;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.container:hover{
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    background-color: lightseagreen;
}

.avatar{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid darkgreen;
    box-shadow: 0 0 10px darkgreen;
}



h1{
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.bio{
    font-size: 1rem;
    margin-bottom: 1rem;
    color: darkgreen;
}

.links a {
    display: inline-block;
    margin: 0.5rem 0;
    text-decoration: none;
    color: white;
    background-color: darkgreen;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.links a:hover {
    background-color: rgb(64, 32, 178);
    transform: scale(1.05);
}
.links a:active {
    transform: scale(0.95);
}