/* Home Section */
.home {
    background-color: #d7d2ca;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.home__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.home__image {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.home__profile {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto; /* Centers container horizontally */
    overflow: hidden; /* Any overflow content is hidden */
}

.home__profile-img {
    width: 100%;
    height: auto; /* aspect ratio */
    max-width: 100%;
    /*border-radius: 80%;*/ /* circular image  */
    /*object-fit: cover;*/ 
}

.home__text {
    max-width: 600px;
    text-align: center;
}

.home__title {
    font-size: 3rem;
    margin-bottom: 15px;
    line-height: 1.2;
}

.home__subtitle {
    font-size: 1.8rem;
    color: #555;
    margin-bottom: 20px;
}

.home__description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}