body{
    background-color: rgba(255, 0, 0, 0.719);
}
ul{
    display: flex;
    padding: 30px;
    width: 1600px;
	height: 500px;
	display: flex;
	justify-content: space-between;
	gap: 72px;
	margin-left: 105px;
	margin-bottom: 100px;
    margin-top: 110px;
    border-style: double;
    border-radius: 80px;
    border-width: 15px;
    border-color: black;
			
}
li {
    list-style: none;
}


.parent {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 8px;
}
    
.div1 {
    grid-column: span 2 / span 2;
}

.div2 {
    grid-row-start: 2;
}

.div3 {
    grid-column-start: 1;
    grid-row-start: 3;
}

.div4 {
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 2;
}
        