body {
    background-color: hsl(214, 17%, 92%);
    font-family: "Barlow Semi Condensed", sans-serif;
}

.box {
    border-radius: 10px;
    padding: 20px;
}

.box1 {
    background-color: hsl(263, 55%, 52%);
    color: hsl(214, 17%, 92%);
    grid-area: box1;
}

.box2 {
    background-color: hsl(217, 19%, 35%);
    color: white;
    grid-area: box2;
}

.box3 {
    grid-area: box3;
    background-color: white;
}

.box4 {
    color: hsl(214, 17%, 92%);
    grid-area: box4;
    background-color: hsl(219, 29%, 14%);
}

.box5 {
    background-color: white;
    grid-area: box5;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 10px auto;
    padding: 0 20px;
    grid-template-areas:
        "box1 box1 box2 box5"
        "box3 box4 box4 box5";
}

.header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.name,
.status {
    margin: 0;
}

.name {
    font-size: 16px;
}

.profile {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.status {
    font-size: 12px;
}

.subtitle {
    font-size: 22px;
    font-weight: 500;
}