﻿.profile-box {
    height: 700px;
    width: 700px;
    grid-row: 3;
    grid-column: 2;
    background: rgba(15, 23, 41, 0.8) 48%;
    box-shadow: 2px 2px 8px 1px rgb(0, 0, 0);
    padding: 20px;
    border-radius: 16px;
    color: #fff
}
.profile-grid{
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    grid-template-rows: repeat(7, 1fr);
    width: 100%;
    height: 100%;
}
.profile-image {
    width: 256px;
    height: 256px;
    border-radius: 50%;
    overflow: hidden;
    grid-column: 4;
    box-shadow: 2px 2px 8px 1px rgb(0, 0, 0);
}
.profile-name{
    grid-row: 2;
    grid-column: 4;
    place-self: center;
    font-size: 24px;
}
.profile-divider{
    width: 100%;
    height: 1px;
    grid-row: 3;
    grid-column: 1/8;
    box-shadow: 1px 1px 5px rgb(255, 255, 255);
}
.profile-changes {
    height: 200px;
    width: 700px;
    grid-row: 4;
    grid-column: 2;
    background: rgba(15, 23, 41, 0.8) 48%;
    box-shadow: 2px 2px 8px 1px rgb(0, 0, 0);
    padding: 20px;
    border-radius: 16px;
    color: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.changes-box {
    width: 250px;
    height: 50px;
    background-color: rgb(128, 128, 128, 0.2);
    border-radius: 8px;
    box-shadow: 2px 2px 8px 1px rgb(0, 0, 0);
    display: flex;
    padding-left: 8px;
    align-items: center;

}