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

.arrows {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: black;
    display: flex;
}

body {
    font-family: "Outfit", sans-serif;
    background-color: hsl(0, 0%, 93%);
}

.box_1 {
    grid-area: box1;
    height: 400px;
    background-image: url("../images/desktop-image-hero-1.jpg");
    background-size: cover;
}

.box_1 ul {
    list-style-type: none;
    color: white;
    display: flex;
    flex-direction: inline-block;
    width: fit-content;
    gap: 20px;
    margin: 0;
}

.box_2 {
    grid-area: box2;
    padding: 50px 100px;
    position: relative;
    background-color: white;
}

.box_3 {
    grid-area: box3;
    background-image: url("../images/image-about-dark.jpg");
    background-size: cover;

}

.box_4 {
    grid-area: box4;
    padding: 40px 30px;
    background-color: white;
}

.box_5 {
    grid-area: box5;
    background-image: url("../images/image-about-light.jpg");
    background-size: cover;
}