/* Main content */

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    text-align: center;
    padding: 5rem;
    min-height: 92vh;
    color: var(--shoe-wax);
    font-family: Poppins;
}

#mainSection {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    margin: 0;

}

.container-fluid {
    padding: 1rem;
    padding-inline-start: 2rem;
    padding-inline-end: 2rem;
    margin-bottom: 4rem;
    position: relative;
}


.titleName > h1 {
    display: inline-block;
    position: relative;
    width: 100%;
    font-size: 40px;
    letter-spacing: 2px;
    margin: 0;
    word-wrap: break-word;
    white-space: normal;
}
.name {
    position: relative;
}
.titleName > p {
    margin: 0;
    width: 100%;

}

.profile{
    padding: 4px;
    border-radius: 50%;
    border: 5px solid #373636;
    transition: all .3s ease-in;
}

.profile > img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
}
#buttonGetStarted{
    width: 12rem;
    padding: .5rem;
    transition: background .3s ease;
    border: 2px solid var(--shoe-wax);
}

#buttonGetStarted:hover{
    background-color: var(--foundation-white);
    color: var(--shoe-wax);
    box-shadow: 0 0 10px #00000071;
}

.project-link {
    color: var(--shoe-wax);
    text-decoration: none;
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    display: inline-block;
    margin-bottom: 0.5rem;
    transition: all 0.2s ease;
}

.project-link:hover {
    color: var(--foundation-white);
    text-decoration: underline;
}

.project-description {
    margin-top: 0.5rem;
    line-height: 1.4;
}

@media (max-width: 999px) {
    #mainSection {
        flex-direction: column;
        gap: 2rem;
        animation: opacityAnimate 2s ease;
    }
    .titleName > h1 {
        font-size: 32px;
        min-width: unset;
        padding: 0 1rem;
    }

    .container-fluid {
        padding: 1rem;
        width: 100%;
    }

    .titleName {
        width: 100%;
    }
}
@media (min-width: 999px) {
    #mainSection {
        padding-inline-start: 8rem;
        padding-inline-end: 8rem;
    }
    .titleName{
        animation: slideIn 1s ease-in;
        
    }
    .profile {
        animation: slideIn 1s ease-in;
    }
}

@media (max-width: 480px) {
    .titleName > h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .project-link {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .project-description {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }	
}
@keyframes slideInTxt {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }	
}
@keyframes opacityAnimate {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
