* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Nata Sans", sans-serif;
}

.main {
    width: 100%;
    height: 100vh;
    background-color: #f5f5f5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    display: flex;
    flex-direction: column;
    margin: 20px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

.profile-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    padding: 10px;
    gap: 10px;
    background-color: rgb(255, 166, 0);
}

.profile-img {
    max-width: 40%;
    border: #f5f5f5 2px solid;
    border-radius: 50%;
}

.profile-job {
    font-size: 1.0rem;
    font-weight: 700;
    color: #fff;

}

.profile-socials>a {
    cursor: pointer;
    margin: 5px;
}

.profile-socials>a>img {
    width: 20px;
    transition: linear 0.3s;
}

.profile-socials>a>img:hover {
    scale: 1.5;
}

.details-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
}

.details-title {
    font-size: 1.0rem;
    text-wrap: balance;
}

.details-title-decorate {
    color: rgb(255, 166, 0);

}

.details-description {
    font-size: 0.9rem;
    text-wrap: balance;
}

@media (width > 765px) {
    .container {
        flex-direction: row;
        border-radius: 40px;
    }

    .profile-info {
        width: 50%;
        border-radius: 40px;
    }

    .profile-socials>a>img {
        width: 30px;
    }

    .details-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 50%;
    }

    .profile-img {
        max-width: 60%;
    }

    .profile-job {
        font-size: 1.5rem;
    }

    .details-title {
        font-size: 1.3rem;
    }

    .details-description {
        font-size: 1.1rem;

    }
}

@media (width > 1020px) {
    .container {
        width: 80%;
    }

    .profile-job {
        font-size: 2rem;
    }

    .profile-socials>a>img {
        width: 40px;
    }

    .details-section {
        padding: 40px;
    }

    .details-title {
        font-size: 2rem;
    }
}

@media (width > 1400px) {
    .container {
        width: 50%;
    }
}

@media (width > 1700px) {
    .container {
        width: 60%;
    }

    .details-section {
        padding: 100px;
    }
}

@media (width > 2000px) {
    .container {
        width: 50%;
    }

    .profile-img {
        max-width: 40%;
    }
}