html, body {
  height: 100%;
  margin: 0;
  background-color: pink;
  background-image: url('piggy.png');
  background-repeat: repeat;
  background-size: cover;
}

.banner {
      background-color: #000000d2; /* Change color */
      color: rgb(0, 0, 0);
      text-align: center;
      color: #ff98c8;
      padding: 1px;
      font-size: 24px;
      font-weight: bold;
	    margin: 0px;
    }

.menu-btn {
      position: fixed;
      top: 35px;
      left: 15px;
      z-index: 1001;
      background: #333;
      color: white;
      border: none;
      padding: 10px 15px;
      font-size: 18px;
      cursor: pointer;
      border-radius: 10px;
    }

    /* Sidebar menu */
    .side-menu {
      position: fixed;
      top: 0;
      left: -250px; /* hidden off screen */
      width: 250px;
      height: 100%;
      background: #222;
      color: white;
      padding-top: 85px;
      transition: 0.3s;
      z-index: 1000;
    }

    .side-menu a {
      display: block;
      padding: 15px 20px;
      color: white;
      text-decoration: none;
      transition: 0.2s;
    }

    .side-menu a:hover {
      background: #444;
    }

    /* Show menu when active */
    .side-menu.active {
      left: 0;
    }

    .logo {
      font-size: 20px;
      font-weight: bold;
    }

    /* User icon */
    .user-icon {
      cursor: pointer;
      position: absolute;
      top: 35px;
      right: 15px;
    }

    .user-icon img {
      width: 35px;
      height: 35px;
      border-radius: 50%;
    }

.banner1 {
      background-color: #00000082; /* Change color */
      color: rgb(0, 0, 0);
      text-align: center;
      color: #ff98c8;
      padding: 20px;
      font-size: 24px;
      font-weight: bold;
	  border-radius: 10px;
	  margin: 10px;
    }

.banner2 {
      background-color: #e0e0e0; /* Change color */
      color: rgb(0, 0, 0);
      text-align: center;
      color: #065c27;
      padding: 20px;
      font-size: 24px;
      font-weight: bold;
	  border-radius: 10px;
	  margin: auto;
      max-width: 450px;
    }

button {
  padding: 5px 15px;
  font-size: 16px;
  cursor: pointer;
  color: #e0e0e0;
  background-color: #065c27;
  border: none;
  border-radius: 5px;
}

#active-challenges li button {
  margin-left: 10px; /* spacing between text and button */
}

a:link {
		color: #ff98c8; /*unvisted link*/
    text-decoration: none;
	}

	a:visited {
		color: #ff98c8; /* Visited link */
    text-decoration: none;
		}

	a:hover {
		color: #ff98c8; /* When mouse hovers over */
		}