body {
    font-family: Arial, Helvetica, sans-serif;
  }
  
  * {
    box-sizing: border-box;
  }

  .container {
    position: relative;
    margin-top: 40px;
    margin-right: 20px;
    margin-left: 20px;
    border-radius: 5px;
    background-color: #f2f2f264;
    padding: 20px 0 20px 0;
  } 
  
  input,
  .btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin: 5px 0;
    opacity: 0.85;
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
    text-decoration: none; /* remove underline from anchors */
  }
  
  input:hover,
  .btn:hover {
    opacity: 1;
    font-weight: bolder;
  }
  
  /* add appropriate colors to fb, twitter and google buttons */
  .fb {
    background-color: #3B5998;
    color: white;
  }
  
  .twitter {
    background-color: #55ACEE;
    color: white;
  }
  
  .youtube {
    background-color: #dd4b39;
    color: white;
  }
  
  input[type=submit]:hover {
    background-color: #11a42c;
  }
  
  /* Two-column layout */
  .col {
    float: left;
    width: 50%;
    margin: auto;
    padding: 0 50px;
    margin-top: 6px;
  }
  
  /* Clear floats after the columns */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }

  .hide-md-lg {
    display: none;
  }
  
  /* bottom container */
  .bottom-container {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    background-color:#ffffffc2;
    margin-right: 20px;
    margin-left: 20px;
    border-radius: 0px 0px 4px 4px;
  }
  
  .bottom-container:hover {
    text-align: center;
    border-radius: 0px 0px 4px 4px;
    font-weight: bolder;
  }

  @media screen and (max-width: 650px) {
    .col {
      width: 100%;
      margin-top: 0;
    }
    .hide-md-lg {
      display: block;
      text-align: center;
    }
  }

input[type=text], select, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

input[type=submit] {
  background-color: #ea322f;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}