/* General body styling */
body {
    font-family: "Righteous", sans-serif;
    background-color:rgb(239, 186, 238);
    margin: 0;
}

/* Card container */
.card {
    width: 400px;
    background-color: #ebe7d9;
    margin: 20px auto;
    padding: 30px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
    border-radius: 10px;
    text-align: center;
}

/* Image styling */
.card img {
    width: 250px;
    border-radius: 50%;
    margin-bottom: 20px;
}

/* Text styling */
.card h1 {
    color: #00008B;
    margin-bottom: 5px;
}

.card h2 {
    color: #5b1b1b;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Skills list */
.card ul {
    list-style-type: none;
    padding: 0;
}

.card ul li {
    margin: 5px 0;
}

/* Links */
.card a {
    color: #00008B;
    text-decoration: none;
    font-weight: bold;
}

.card a:hover {
    color: #ff4500; /* hover effect */
}
