    .space {
            height:120px;
            width:2250px;
            background-color:#222222;
            position:relative;
            left:-10px;
        }

    .space2 {
            height:600px;
            width:2220px;
            background-color:#179173;
            position:relative;
            top:-10px;
            z-index:-1;
        }

    .space3 {
            height:80px;
            width:2220px;
            background-color:lightgray;
            position:relative;
            border-radius:5pt;
        }

    .space4 {
            height:300px;
            width:300px;
            background-color:lightgray;
            position:relative;
            border-radius:10pt;
            z-index:-1;
        }

/* Profile Icon Button*/
.profbtn {
    
}

/* Sign up button*/
.signbtn {
    
}



/* Dropdown Button */
.dropbtn {
  background-color: #222222;
  color: white;
  padding: 20px;
  font-size: 20px;
  border-color: white;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #222222;
  min-width: 1750px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: white;
  padding: 40px 65px;
  font-size: 20px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f58720;}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {display: block;}

/* Change the background color of the dropdown button when the dropdown content is shown */
.dropdown:hover .dropbtn {background-color: #de7a1d;}