/* Import Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    padding: 0;
    background-color: #000022;
    color: #efefef;
}

.projectTitle {
    margin-left: 10px;
    font-size: 20px;
    font-weight: bold;
}

.projectDescription {
    margin-left: 10px;
}

span {
    color: #c42847;
}

img {
    max-width: 100%;
    border: 2px double #efefef;;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-top: 20px;
    border: 3px solid #efefef;
}

.quote {
    font-size: 1.2em;
    text-align: center;
    margin: 20px 0;
    font-weight: bold;
}

.social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 10px 0;
}

.social-icons a {
    font-size: 1.5em;
    color: #efefef;
    text-decoration: none;
    transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    transform: scale(1.2);
}

.content-divs {
    width: 80%;
    max-width: 600px;
    margin-top: 20px;
}

.content-divs a {
    text-decoration: none;
}

.content-div {
    background-color: #000022;
    color: #efefef;
    padding: 10px;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    border: 3px solid #efefef;
}
