/* Fonts from Google Fonts - more at https://fonts.google.com */
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,700');
@import url('https://fonts.googleapis.com/css?family=Merriweather:400,700');

/* Fonts from Google Fonts - more at https://fonts.google.com */
a{
  color:lightblue
}

*{
	box-sizing:border-box;
}
body{
  background-color:white;
  background-image: url("pat.png");
  color: white;
  font-family: "helvetica", sans-serif;
}
.myButton {
  background-color:#ffffff;
  border-radius:28px;
  border:1px solid #e54b01;
  display:inline-block;
  cursor:pointer;
  color:#e54b01;
  font-family:"helvetica";
  font-size:17px;
  padding:10px 24px;
  text-decoration:none;
  text-shadow:0px 1px 0px #646b63;
  box-shadow: 5px 5px 7px #242124;
}

.myButton:hover {
  background-color:#ebebeb;
}
.myButton:active {
  position:relative;
  top:1px;
}

.myButton2 {
  background-color:#ffffff;
  border-radius:5px;
  border:1px solid #e54b01;
  display:inline-block;
  cursor:pointer;
  color:#e54b01;
  font-family:"helvetica";
  font-size:17px;
  padding:10px 24px;
  text-decoration:none;
  text-shadow:0px 1px 0px #646b63;
  box-shadow: 5px 5px 7px #242124;
}
.myButton2:hover {
  background-color:#ebebeb;
}
.myButton2:active {
  position:relative;
  top:1px;
}
nav{
  position:"fixed"; left: 0px; top:0px; line-height:2em;
}
#wrapper{
  width:100%;
  max-width: 960px;
  margin: 0 auto;
  background-color: #444;
  padding:5vh
}
h3{
  padding: 0px;
  margin: 0;
  color:#e54b01;
  text-shadow: 2px 2px 5px #242124;
}
h1{
  color:#e54b01;
  text-shadow: 2px 2px 5px #242124;
}
div>a{
  color:lightblue;
}
.padding{
  padding-bottom: 40px;
  padding-top: 40px;
}
.img-container {
  text-align: center;
}
@media (min-width: 800px){
  section{
    display: grid;
    grid-template-columns: 1fr 1fr;

  }
}
