.parent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 0px;
}
    
.div1 {
    grid-column: span 3 / span 3;
}

.div2 {
    grid-row-start: 2;
}

.div3 {
    grid-row-start: 2;
}

.div4 {
    grid-row-start: 2;
}

.boxed{
  text-align: center;
  width: 30%;
  height: 600px;
  overflow-y: hidden;
  background-color: white;
  background-image: url("https://wowzow.neocities.org/LAM/LAM-extralinks.png");
  background-size: cover;
  font-size: 18px;
  margin: auto;
}

.links{
  text-align: center;
  width: 100%;
  height: 300px;
  margin-top: 300px;
}

    a {
    color: #29324d;
    text-decoration: underline;
    font-style: italic;
    }

    a visited {
    color: #29324d;
    text-decoration: underline;
    font-style: italic;
    }
  
    a hover {
    color: #29324d;
    text-decoration: underline;
    }