body{
  background-color: rgba(220, 220, 0, 0.2);
 Font-family: Baskerville, Baskerville Old Face, Garamond, Times New Roman, serif.
}
form{
    width: 100%;
    background-color: rgba(220,220,0,0.2);
    padding : 5px 0px;
}
.c100{
    width: 100%;
    margin: 20px;
}
label{
    display: inline-block;
    min-width: 25%;
    padding: 8px;
    color:blue;
    text-align: center;
    font-family: cursive;
    Font-family: Baskerville, Baskerville Old Face, Garamond, Times New Roman, serif.
    font-size: 3em;
    font-weight: bold;
}
input[type="submit"]{
    color: RGB(200,100,0);
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 14px;
    border: 2px solid RGB(200,100,0);
}
input[type="submit"]:hover{
    background-color: RGB(200,100,0);
    color: #fff;
    cursor: pointer;
    box-shadow: 0px 0px 5px 0px #777;
}
h1{
    color:RGB(200,100,0);
    padding : 5px 0px;
    text-align: center;
    font-family: cursive;
    Font-family: Baskerville, Baskerville,   Old Face, Garamond, Times New Roman, serif
    font-size: 3em;
    font-weight: bold;
}
p, h3{
    padding : 5px 0px;
    text-align: center;
    font-family: cursive;
    Font-family: Baskerville, Baskerville Old Face, Garamond, Times New Roman, serif.
    font-size: 1,5em;
    font-weight: bold;
}
.wrapper {
    display: grid;
    grid-template-columns: 1fr  1fr;
    grid-template-rows: 350px;
    grid-gap: 10px;
}

.box1 {
    grid-column: 1;
    grid-row: 1;
}

.box2 {
    grid-column: 2;
    grid-row: 1;
}

.box3 {
    grid-row: 2;
    grid-column: 3;
}
.footer-basic {
  padding:40px 0;
  background-color: inherit;
  color:#4b4c4d;
}

.footer-basic ul {
  padding:0;
  list-style:none;
  text-align:center;
  font-size:18px;
  line-height:1.6;
  margin-bottom:0;
}

.footer-basic li {
  padding:0 10px;
}

.footer-basic ul a {
  color:inherit;
  text-decoration:none;
  opacity:0.8;
}

.footer-basic ul a:hover {
  opacity:1;
}

.footer-basic .social {
  text-align:center;
  padding-bottom:25px;
}

.footer-basic .social > a {
  font-size:24px;
  width:40px;
  height:40px;
  line-height:40px;
  display:inline-block;
  text-align:center;
  border-radius:50%;
  border:1px solid #ccc;
  margin:0 8px;
  color:inherit;
  opacity:0.75;
}

.footer-basic .social > a:hover {
  opacity:0.9;
}

.footer-basic .copyright {
  margin-top:15px;
  text-align:center;
  font-size:13px;
  color:#aaa;
  margin-bottom:0;
}

/* Credit to https://epicbootstrap.com/snippets/footer-basic */
header, .row{
    display:flex ;    /* aligns all child elements (flex items) in a row */
    flex-direction: row;
    flex-flow: row wrap;
    align-items: baseline;
  }
  header{
    background-color: green;
    color:white;
  }
  .col {
    flex: 1;       /* distributes space on the line equally among items */
  }
