
html{
box-sizing: border-box;
margin: 0;
padding: 0;
 }
 *, *::before, * ::after {
box-sizing: inherit;
}
body {
font-family: arial, verdana, sans-serif;
color: #000;
font-size: 100%;
text-decoration: none;
 }
 video{
 max-width: 100%;
 height: auto;
 }
  
header {
 background-color: rgb(230, 230, 230);
 align-items: start;
 max-width: 100%;
   } 
ul {
  list-style-type: disc;
  margin: 0;
  padding: 0;
  font-size: 1.rem;
}
 a {
 color: #494949;
 text-align: center;
 font-weight: 500;
 list-style-type: none;
}
 a:hover {
  color: #F42300;
   }
p { 
 word-wrap: break-word;
 font-size: 1.25rem;
 text-align: left;
 color: #000
  }
img {
 border: 5px solid #B8B8B8;
 max-width: 100%;
 }
 .centering {
 display: flex;
justify-content: center;
 }
  h1 {
  text-align: center;
  font-size: 2rem;
  color:#4030F2;
  }  
  h2 {
  text-align: center;
  font-size: 1.5rem;
  color: #2A1FAA;
  } 
  blockquote {
  text-align: left;
  font-size: 1.5rem;
  color: #000;
  }
  input[type=submit]{
  width: 10rem; height: 3rem;
  text-align: center;
  font-size: 2rem;
  }
 .safer-grid {
display: grid;
grid-template-columns: 1.75rem 1fr 1fr 1fr;
grid-template-rows: 1.75rem 1fr;
 }
 .sidebar {
grid-column-start: 1;
grid-column-end: 2;
grid-row: 1/10;
background-color: #fff;
border: 4px solid #4030F2;
border-style: double;
padding: 0;
writing-mode: vertical-lr;
text-align: start;
font-size: 1rem;
color: #000;
 }
 .divider {
grid-column: 2/-1;
grid-row: 1/2;
padding: 0;
background-color: #fff;
border: 4px solid #4030F2;
border-style: double;
text-align: center;
font-size: 1rem;
color: #000; 
 }
 .content1 {
grid-column: 2/-1;
grid-row: 2/-1;
align-self: start;
margin: auto;
padding: 2rem;
 }
 footer {
display:flex;
background-color: #003399;
color: #EEFCA9;
border: 4px solid #000;
padding: 0;
align-items: flex-start;
 }
@media screen and (max-width: 768px){

  body {
font-family: arial, verdana, sans-serif;
color: #000;
font-size: 75%;
text-decoration: none;
 }
 .safer-grid {
display: grid;
grid-template-columns: 1.75rem 1fr 1fr;
grid-template-rows: 1.75rem 1fr;
 } 
  }
