@import url('https://fonts.googleapis.com/css?family=Ubuntu:regular,regularitalic,bold');
    html {
      position: relative;

    }
    body {
      padding: 1em;
      font-family: "Ubuntu", sans-serif;
      background: #2C2F33;
    }
    .content {
      text-align: center;
      max-width: 1024px;
      margin: 0 auto;
    }
    h2 {
      font-size: 1.1em;
      color: #fff;
    }
    a {
      color: #f79421;
    }
    p {
      color: #fff;
    }

    .dropbtn {
      background-color: #2C2F33;
      color: #f79421;
      font-size: 16px;
      border: none;
      cursor: pointer;
    }
    
    .dropdown {
      position: relative;
      display: inline-block;
    }
    
    .dropdown-content {
      display: none;
      position: absolute;
      background-color: #2C2F33;
      min-width: 160px;
      box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
      z-index: 1;
    }
    
    .dropdown-content a {
      color: #f79421;
      padding: 8px 16px;
      text-decoration: none;
      display: block;
    }
    
    .dropdown-content a:hover {background-color: #3a3a3a}
    
    .dropdown:hover .dropdown-content {
      display: block;
    }
