@charset "UTF-8";

.profile {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}
.profile li:first-child {
    width: 83%;
}
.profile li:last-child {
    width: 13%;
}
.profile li:last-child img {
    width: 100%;
}

@media screen and (max-width: 499px) {
.profile {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    flex-wrap: wrap;
}
.profile li:first-child {
    width: 100%;
    margin-bottom: 30px;
}
.profile li:last-child {
    width: 30%;
}

}

@media screen and (min-width: 500px) {

}