body {
    background-color: hsl(0, 0%, 8%);
    color: white;
    font-family: "Inter", sans-serif;
    font-size: 0.75rem;
    margin: 0;
    text-align: center;
}

.profile_container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.profile_box {
    width: 15.625rem;
    background-color: hsl(0, 0%, 12%);
    border-radius: 0.625rem;
    padding: 1.563rem;
}

.profile_image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile_image img {
    max-width: 5rem;
    border-radius: 3.125rem;
    margin-bottom: 0.625rem;
    transition: 0.3s ease-in;
}

.profile_image:hover img {
    transform: scale(1.1);
    transition: 0.3s ease-out;
}

.info_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.name {
    margin: 0;
    color: white;
    font-size: 1.25rem;
}

.location {
    margin: 0.625rem;
    color: hsl(75, 94%, 57%);
    font-weight: 600;
}

.button_section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.button {
    padding: 0.625rem;
    margin: 0.438rem 0rem;
    background-color: hsl(0, 0%, 20%);
    width: 100%;
    max-width: 90%;
    color: white;
    border-radius: 0.625rem;
    transition: 0.4s ease-in;
}

.button:hover {
    background-color:hsl(75, 94%, 57%);
    cursor: pointer;
    color: hsl(0, 0%, 8%);
    font-weight: bold;
    transform: scale(1.1);
    transition: 0.4s ease-out; 
    font-size: 0.813rem;
    
}




