/* From Uiverse.io by aadium */
/* sites */
.menu-button {
    position: relative;
    display: block;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .news-button {
    background-color: #575757;
    color: #ffffff;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: bold;
    border: 2px solid transparent;
    border-radius: 15px;
    cursor: pointer;
  }

  .dropdown-content {
    display: none;
    font-size: 13px;
    position: absolute;
    z-index: 1;
    min-width: 200px;
    background-color: #212121;
    border: 2px solid #575757;
    border-radius: 0px 15px 15px 15px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  }

  .dropdown-content a {
    color: #e8e8e8;
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    transition: 0.1s;
  }

  .dropdown-content a:hover {
    background-color: #575757;
    color: #212121;
  }

  .dropdown-content a:focus {
    background-color: #212121;
    color: #e8e8e8;
  }

  .dropdown-content #top:hover {
    border-radius: 0px 13px 0px 0px;
  }

  .dropdown-content #bottom:hover {
    border-radius: 0px 0px 13px 13px;
  }

  .menu-button:hover news-button {
    border-radius: 15px 15px 0px 0px;
  }

  .menu-button:hover .dropdown-content {
    display: block;
  }


  /* main  */
  .sports-menu {
    width:100%;
    padding-left: 10px;
    padding-top: 10px;
  }

  .menu-button {
    display: inline-block;
  }