* {
    box-sizing: border-box;
  }
  
  /* Style the body */
  body {
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
  }
  
  .page {
    position: relative;
    min-height: 100vh;
  }
  
  
  /* Sticky navbar - toggles between relative and fixed, depending on the scroll position. It is positioned relative until a given offset position is met in the viewport - then it "sticks" in place (like position:fixed). The sticky value is not supported in IE or Edge 15 and earlier versions. However, for these versions the navbar will inherit default position */
  .navbar {
    overflow: hidden;
    background-color: #d8d8d8;
  }
  
  /* Style the navigation bar links */
  .navbar a {
    float: left;
    display: block;
    color: black;
    text-align: center;
    padding: 14px 20px;
    text-decoration: none;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-size: 20px;
  }
  
  /* Right-aligned link */
  .navbar a.right {
    float: right;
  }
  
  /* Active/current link */
  .navbar a.active {
    background-color: #38a8e9;
    color: black;
  }
  
  /* Style the input container */
  .navbar .login-container {
    float: right;
  }
  
  /* Style the input field inside the navbar */
  .navbar .login-container input {
    padding: 6px;
    margin-top: 8px;
    font-size: 16px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    border: none;
    width: 250px; /* adjust as needed (as long as it doesn't break the topnav) */
  }
  
  /* Style the button inside the input container */
  .navbar .login-container button {
    float: right;
    padding: 6px;
    margin-top: 8px;
    margin-left: 6px;
    margin-right: 16px;
    background: #aaa;
    font-size: 20px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    border: none;
    cursor: pointer;
  }
  
  .navbar .login-container button:hover {
    background: #666;
  }
  
  /* The dropdown container */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 20px;
    border: none;
    outline: none;
    color: black;
    padding: 14px 16px;
    background-color: inherit;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    /*font-family: inherit;  Important for vertical align on mobile phones */
    margin: 0; /* Important for vertical align on mobile phones */
  }
  
  /* Dropdown content (hidden by default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
  }
  
  /* Add a grey background color to dropdown links on hover */
  .dropdown-content a:hover {
    background-color: #ddd;
    color: black;
  }
  
  /* Change color on hover */
  .navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #ddd;
    color: black;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Column container */
  .row {  
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
  }
  
  .main {   
    -ms-flex: 70%; /* IE10 */
    flex: 70%;
    background-color: white;
    padding: 20px;
    padding-bottom: 8rem;
    font-size: 14px;
  }
  
  .main h1{
    color: #38a8e9;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
  }

  .main p{
    font-size: 16px;
    color: black;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
  }
  
  /* Footer */
  .footer {
    padding-left: 20px;
    padding-top: 10px;
    text-align: left;
    background: #eeeeee;
    position: absolute;
    bottom: 0;
    height: 8rem;
  }
  
  .footer p1{
    font-size: 12px;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
  }
  
  .footer p2{
    font-size: 14px;
    font-weight: bold;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
  }
  
  /* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 700px) {
    .row {   
      flex-direction: column;
    }
  }
  
  /* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
  @media screen and (max-width: 500px) {
    .navbar a, .navbar .login-container input, .navbar .login-container button{
      float: none;
      width: 100%;
    }
  }