body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #191919;
    color: #ffffff;
    font-family: 'Fredoka', sans-serif;
    text-align: center;
    min-height: 100vh;
}

div.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
}

div.profile {
    background-color: #2b2b2b;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    max-width: 500px;
}

div.profile img {
    border-radius: 50%;
    width: 150px;
    height: auto;
    display: block;
}

div.profile h1 {
    background-color: #3a3b3c;
    font-size: 28px;
    padding: 10px 60px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.3);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
}

div.socials {
    display: flex;
    justify-content: center;
    align-items: center; 
    margin-top: 5px;
}

a.social {
    margin: 0 10px;
    display: flex;         
    align-items: center;    
    justify-content: center; 
}

a.social img {
    width: 25px;
    height: 25px;
    display: block;   
}

div.projects {
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    width: 90%;
}

div.project {
    background-color: #2b2b2b;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(50% - 20px);
    max-width: 700px;
    height: auto;
    box-sizing: border-box;
}

img.project {
    border: 2px solid #ffffff;
}

p.description {
    font-size: 20px;
    display: flex;   
    flex-direction: row;      
    align-items: center;    
    justify-content: center; 
}

a.description {
    margin: 0 5px;
    display: flex;         
    align-items: center;    
    justify-content: center;   
}

img.description {
    width: 24px;
    height: 24px;
    display: block;   
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 767px) {
    div.projects {
        flex-direction: column; 
    }

    div.project {
        width: 100% 
    }

    p.description {
        flex-direction: column;      
    }
}