.container {
    position: relative;
    height: 150px;
    width: 100%;
    background: var(--gradient);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
}

.profile_image_container {
    position: absolute;
    left: 10px;
    bottom: -35px;
    height: 100px;
    width: 90px;
    border-radius: 25px;
    border: 4px solid #000;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile_image {
    height: calc(100%);
    width: calc(100%);
    border-radius: inherit;
}

.main {
    margin-left: 110px;
    padding-bottom: 15px;
}

.main_name {
    font-size: 16px;
    margin-bottom: 3px;
}

.main_location {
    font-size: 12px;
    display: flex;
    align-items: center;
}

.location_icon {
    height: 10px;
    width: 10px;
    margin-right: 5px;
}

.edit_button {
    position: absolute;
    top: 10px;
    right: 20px;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
}

.edit_icon_container {
    height: 16px;
    width: 16px;
    margin-right: 5px;
}

@media screen and (min-width: 300px) {
    .profile_image_container {
        height: 110px;
        width: 100px;
    }

    .main {
        margin-left: 120px;
        padding-bottom: 20px;
    }
    .main_name {
        font-size: 18px;
    }
    .main_location {
        font-size: 14px;
    }
    .location_icon {
        height: 15px;
        width: 15px;
    }
}

@media screen and (min-width: 550px) {
    .container {
        height: 300px;
    }
    .profile_image_container {
        left: 20px;
        height: 130px;
        width: 120px;
    }
    .main {
        margin-left: 150px;
    }
    .main_name {
        font-size: 22px;
    }
    .main_location {
        font-size: 16px;
    }
    .location_icon {
        height: 18px;
        width: 18px;
    }
    .edit_button {
        top: 20px;
        font-size: 14px;
    }
    .edit_icon_container {
        height: 18px;
        width: 18px;
    }
}

@media screen and (min-width: 1050px) {
    .profile_image_container {
        left: 40px;
    }
    .main {
        margin-left: 180px;
    }
    .main_name {
        font-size: 24px;
    }
    .main_location {
        font-size: 18px;
    }
    .edit_button {
        right: 40px;
    }
}
@media screen and (min-width: 1450px) {
    .container {
        height: 450px;
    }
}
