.grid {
    display: grid;
    grid-template-columns: 16.6% 16.6% 16.6% 16.6% 16.6% 16.6%;
  /*border: 2px blue solid;*/
}
 
.box {
    background-color: white;
    color: black;
    /*border: 2px dodgerblue solid;*/
} 
 
h1 {
    color: #D45202;
    font-family: "Monoton";
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}
 
.image1 {
    max-width: 66.4%;
    height: 600px;
}
 
.image2 {
    max-width: 66.4%;
    height: auto;
}
 
.p1 {
    color: black;
    font-family: "Montserrat";
    text-align: left;
    font-size: 20px;
    font-weight: 400;
}
 
.p2 {
    color: black;
    font-family: "Montserrat";
    text-align: left;
    font-size: 20px;
    font-weight: 400;
}
 
.p3 {
    color: black;
    font-family: "Montserrat";
    text-align: left;
    font-size: 15px;
    font-weight: 400;
}
 
.button {
    background-color: #D45202;
    color: white;
    border-radius: 3px;
    font-family: "Montserrat";
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    position: center;
    padding: 3px 7px;
    transition-duration: 0.3s;
}
 
.button:hover {
    background-color: #EC6009;
}
 
.confindment {
    height: 110px;
    grid-column: 1 / span 6;
    background-color: #323840;
}
 
.rules {
    height: 100px;
    grid-column: 2 / span 4;
}
 
.heading {
    color: #323840;
    font-family: "Montserrat";
    text-align: left;
    font-size: 30px;
    font-weight: bold;
    grid-column: 2 / span 4;
}
 
.cluespacer {
    height: 30px;
    grid-column: 1 / span 6;
}
 
.body {
    height: auto;
    grid-column: 2 / span 4;
}
 
.boundaries {
    height: auto;
    grid-column: 2 / span 2;
}

.example {
    height: auto;
    grid-column: 4 / span 2;
}
