body {
  background-image: url('giphy.gif');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  box-sizing: border-box;
  }

h2 + p {
    line-height: 15px;
}

/* top navigation bar */
.topnav {
  overflow: hidden;
  background-color:rgba(0, 35, 102, 0.5);
}

.topnav a {
  float: left;
  display: block;
  color: rgb(255, 255, 255);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: rgba(0, 0, 0, 0.5);
  color: rgb(255, 255, 255);
}

.topnav a.active {
  background-color: rgba(0, 35, 102, 0.5);
  color: white;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

 * {
    box-sizing: border-box;
  }
  
  /* Style inputs */
  
  input[type=text], select, textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
  }
  
  input[type=submit] {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 12px 20px;
    border-radius: 2px;
    border-color: #FFFFFF;	
    cursor: pointer;
  }
  
  input[type=submit]:hover {
    background-color: rgba(0, 35, 102, 0.5);
  }
  
  /* Style the container/contact section */
  .container {
    border-radius: 5px;
	background-color: rgba(0, 35, 102, 0.5);
    color: #ffffff;
    padding: 10px;
  }
  
  /* Create two columns that float next to eachother */
  .column {
    float: left;
    width: 50%;
    margin-top: 6px;
    padding: 20px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column, input[type=submit] {
      width: 100%;
      margin-top: 0;
    }
  }

/* buttons */
  .centered-buttons {
    text-align: center;
  }

  .centered-buttons1 {
    background-color: rgba(0, 35, 102, 0.5);
    color: white;
    border-color: #FFFFFF;
    height: 35px;
    width: 105px;
    border-radius: 2px;
    cursor: pointer;
    margin-right: 8px;
    transition: opacity 0.15s;
}

.centered-buttons1:hover {
    background-color: RGBA (255, 255, 255, 0.5);;
    color: #white;
    border-color: #002366;
}

.centered-buttons1:active {
  background-color: black;
  color: white;
  border-color: white;
}

  /* When the screen is less than 600px wide, stack the links and the search field vertically instead of horizontally */
  @media screen and (max-width: 600px) {
    .topnav a, .topnav input[type=text] {
      float: none;
      display: block;
      text-align: left;
      width: 100%;
      margin: 0;
      padding: 14px;
    }
    .topnav input[type=text] {
      border: 1px solid #ffffff;
    }
  }