body{
    width: 70%;
    display: block;
    margin: auto;
    background-color:gainsboro;
    font-size: 62.5%;
}
#wrapper{
    display: grid;
    grid-template-columns: 20%  70% 10%;
    grid-auto-rows: auto auto auto;
    //grid-gap: 1%;
    background-color: whitesmoke;
    border: 1px solid black;
}
#b1{
    grid-column: 2/3;
    grid-row: 1/2;
    background-color: orange;
}
#b2{
    grid-column: 1/2;
    grid-row: 1/4;
    width: 100%;
    height: 600px;
    background-color: whitesmoke;
    /*background-image: url("img/grunt.svg");
    background-repeat: no-repeat;
    background-position: top;
    background-size: contain;*/
}
#logo{
    width: 90%;
    height: 200px;
    //border: 1px solid black;
    display: block;
    margin-left: auto;
    margin-right: auto;
    background-image: url("img/grunt.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    margin-bottom: 0;
    padding: 5px;
}
h1{
    text-align: center;
    font-weight: bold;
    font-size: 2.4rem;
    color: white;
    text-shadow: 2px 2px 4px #000000;
}
h2{
    text-align: center;
    font-size: 1.5rem;
    text-shadow: 2px 2px 5px red;
    margin-bottom: 5px;
}
#b3{
    width: 100%;
    grid-column: 2/4;
    grid-row: 2/3;
    background-color: white;
    min-height: 400px;

}
#b4{
    grid-column: 3/4;
    grid-row: 1/2;
    background-color: whitesmoke;
    background-image: url("../img/brunch-napkin.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
#brunch{
    width: 94%;
    height: 94%;
    display: block;
    margin: 3%;
    border: 1px solid black;
    border-radius: 15px;

}
.sldH1{
    color: orange;
}
.sldDiv{
    display: block;
    width: 80%;
    margin: auto;
}
p{
    color: cornflowerblue;
    font-size: 1.22rem;
}
.sldH2{
    color: slateblue;
}
#btn1{
    margin-top: 20px;
    height: 35px;
    width: 96%;
    cursor: pointer;
    margin-left: 2%;
    //background-color: whitesmoke;
}
#btn2{
    margin-top: 15px;
    height: 35px;
    width: 96%;
    cursor: pointer;
    margin-left: 2%;
    margin-bottom: 15px;
}
.compare{
    display: block;
    width: 90%;
    margin-left: 1%;
    margin-right: auto;
    color: sandybrown;
    font-size: 0.9rem;
    //border: 1px solid gray;
    margin-top: 5px;
    text-align: center;
    cursor: pointer;
    padding: 5px;
    font-family: Georgia, serif;
    font-weight: 400;
}
.compare:hover{
    color: darkgreen;
}
.compare:after{
    color: sandybrown;
}
h3{
    text-align: center;
    font-size: 1.2rem;
    color: palegreen;
    text-shadow: 2px 2px 4px #000000;
}
#d5{
    background-color: black;
    width: 100%;
    height: 100px;
    grid-column: 2/4;
}
code{
    background-color: whitesmoke;
    padding-left: 5px;
    padding-right: 5px;
    color: black;
}
pre{
    background-color: linen;
    display: block;
    margin: 5px auto 5px auto;
    width: 70%;
    font-size: 1.22rem;
    padding: 5px;
    height: auto;
    white-space: pre-wrap;       /* Since CSS 2.1 */
    white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
    white-space: -pre-wrap;      /* Opera 4-6 */
    white-space: -o-pre-wrap;    /* Opera 7 */
    word-wrap: break-word;
    margin-top: 10px;
}
em{
    color: red;
}
label{
    font-size: 1.44rem;
    color: black;
    text-emphasis: black;
}
li{
    font-size: 1.22rem;
}
#no{
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 5px;
    margin-top: 5px;
    text-align: center;
    font-size: 1.22rem;
    color: linen;
    background-color: black;
    width: 100px;
    height: auto;
    border-radius: 20px;
    padding: 5px;
}
.myCode{
    display: block;
    font-size: 1.22rem;
    margin: 10px;
    background-color: linen;
    padding: 5px;
}