body {
        background-color: #f9dee1;
        font-family: Verdana, Geneva, Tahoma, sans-serif;
        color: #282A36;
    }
    
    h1 {
        color: #FF1493;
        text-align: center;
    }
    
    h2 {
        color: #FF69B4;
    }
    
    footer {
        text-align: center;
        border-top: 2pt solid #fcc9ce;
        padding: 5pt;
    }
 .box {
        border-style: solid;
        border-color: white;
        border-width: 1pt;
    }
section.box {
        border: solid white 2pt;
        padding: 5pt;
        margin-bottom: 5pt;
    }
  section.box { 
        border-radius: 10%;
    }
    
  img {
  width: 300px; /* or a percentage like 50% */
  height: auto;
}

.parent {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-template-rows: repeat(2, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
}

.div1 { grid-area: 1 / 1 / 3 / 2; }
.div2 { grid-area: 1 / 2 / 2 / 4; }
.div3 { grid-area: 2 / 2 / 3 / 4; }




  