
body {
    font-family: 'Roboto', sans-serif;
    background-color: #4a97fc;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.card {
    background-color: rgb(60, 113, 182);
    width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    border: 2px solid #2a415f;
}


.profile-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid #0314ff;  
    margin-bottom: 20px;
}


.profile-info {
    text-align: center;
}

.profile-info h1 {
    margin: 0;
    font-size: 24px;
    color: #141414;
}

.profile-info .bio {
    font-size: 14px;
    color: #141414;
    margin: 10px 0;
}

.profile-info .contact {
    font-size: 12px;
    color: #141414;
}

.profile-info .contact strong {
    color: #000000;
}
