
body {
    font-family: Arial, sans-serif;
    background-color: rgb(1, 68, 126);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}


.card {
    background-color: white;
    width: 350px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #00e0fd;
}


.profile-photo {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.profile-photo img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}


.card-content {
    padding: 20px;
}

.card-content h1 {
    font-size: 24px;
    color: rgb(31, 43, 54);
}

.card-content .title {
    font-size: 18px;
    color: rgb(31, 43, 54);
    margin-top: 5px;
}

.card-content .bio {
    font-size: 16px;
    color: rgb(31, 43, 54);
    margin-top: 15px;
    line-height: 1.6;
}

.contact p {
    font-size: 14px;
    color: rgb(31, 43, 54);
    margin-top: 10px;
}

.contact a {
    color: #0077cc;
    text-decoration: none;
}

.contact a:hover {
    text-decoration: underline;
}

.card-content a:hover{
    color: rgb(0, 33, 141);

}

