* {
    margin: 0;
    padding: auto;
    box-sizing: border-box;
    /* border: 1px solid red; */
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #0093E9;
    background-image: linear-gradient(65deg, #0093E9 0%, #80D0C7 100%);
}

main {
    width: min(95%, 800px);
    background-color: #141414;
    border-radius: 16px;
    display: flex;
    font: 400 18px "Poppins", sans-serif;
    color: #fff;
}

section {
    width: 50%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 0 0 16px;
}

article {
    background-color: #303030;
    width: 65%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.name p:nth-child(1){
    font: 400 28px "Poppins", sans-serif;
}
.name p:nth-child(2){
    font: 400 18px "Poppins", sans-serif;
}
.description {
    font: 400 16px "Poppins", sans-serif;
}
.name {
    margin-top: 30px;
}

img {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    object-fit: cover;
}

.links {
    text-align: center;
}
.socials {
    color: #ffffff;
    transition-duration: 0.4s;
}
.socials:hover {
    color: #bebebe;
}
.socials + .socials {
    margin-left: 20px;
}

.button {
    background-color: #f5f5f5;
    width: 100%;
    height: 45px;
    border: none;
    outline: none;
    font-size: 16px;
    border-radius: 8px;
    color: #111;
    cursor: pointer;
    transition-duration: 0.4s;
    padding: 0;
}

.button:hover{
    background-color: #bebebe;
}

@media screen and (max-width: 550px) {
    main {
        flex-direction: column;
    }
    article,.image{
        text-align: left;
        margin: 0 auto;
        gap: 25px;
    }
    article{
        width: 100%;
        padding: 36px;
    }
    .image{
        padding-bottom: 20px;
    }
    button{
        text-align: center;
        margin: 0;
        gap: 25px;
    }
    .socials{
        padding: 5px;
    }
    .image{
        margin-top: 5%;
        background-color: transparent;
    }
    .name{
        margin-top: 0px;
    }
}