* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-color: black;
    height: 100%;
    width: auto;
    display: grid;
    justify-content: center;
    align-items: center;
    margin: 10rem 5rem;
}

.inner_container {
    width: 350px;
    height: 550px;
    display: grid;
    justify-content: center;
    align-items: center;
    border-radius: .8rem;
    background-color: rgb(46, 46, 46);
}

.jessica_img {
    display: grid;
    justify-content: center;
    align-items: center;
}

img {
    border-radius: 50%;
}

.name_location {
    margin-top: -3rem;
    text-align: center;
}

.name {
    font-size: 1.5rem;
    padding-bottom: .3rem;
    color: whitesmoke;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.location {
    padding-bottom: 1rem;
    font-size: .95rem;
    color: yellowgreen;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.job {
    text-align: center;
}

.job_text {
    font-size: .9rem;
    color: whitesmoke;
    font-family: "Poppins", sans-serif;
}

.social_btn {
    width: 300px;
    display: grid;
    margin-top: -3rem;
}

button {
    margin-bottom: .7rem;
    padding: .7rem 2rem;
    border: none;
    border-radius: .5rem;
    cursor: pointer;
    color: whitesmoke;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    background-color: #797979;
}

button:hover {
    color: black;
    background-color: yellowgreen;
}


@media (min-width: 400px) {
    
    .inner_container {
        width: 350px;
        height: 550px;
    }
}

@media (min-width: 1500px) {
    .inner_container {
        width: 350px;
        height: 550px;
    }
}