* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

.navbar {
    background-color: #c7954c;
    margin-bottom: 0em;
}

.nonresponsive {  
    overflow: hidden;
}

.navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.dropdown {
    float: left;
    overflow: block;
}

.dropctr {
    float: right;
    height: auto;
}

.dropdown .dropbtn {
    font-size: 16px;    
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font: inherit;
    margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: #635636;
}

.dropdown-content {
    position: absolute;
    background-color: #c7954c;
    width: 100%;
    left: 0;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    transition: height 1s;
    display: none;
}

/* Create Five equal columns that floats next to each other
    padding-left: 55px; */
.column {
    float: left;
    width: 20%;
    background-color: #c7954c;
}

.column a {
    float: none;
    color: white;
    padding: 5px;
    text-decoration: none;
    display: block;
    text-align: center;
}

.column a:hover {
  background-color: #635636;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}
/* Moble Menu */
/* Hide the link that should open and close the navbar on small screens */
.navbar .icon {
    display: none;
    float: right;
}

/* When the screen is less than 850 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the navbar (.icon) */
@media screen and (max-width: 875px) {
  .navbar a:not(:first-child) {display: none;}
  .navbar a.icon {
    float: right;
    display: block;
    margin-right: 0;
  }
  .dropdown {
    display: none;
  }
}

@media screen and (max-width: 875px) {
  .navbar.responsive {
    position: relative;
    z-index: 4000;
  }
  
  .responsive {    
    overfow: visible;
  }
  
  .navbar.responsive a.icon {
    position: absolute;
    float: right;
    right: 0;
    top: 0;
    height: auto;
  }
  .navbar.responsive a, div {
    float: none;
    display: block;
    text-align: left;
  }
  .navbar.responsive div.dropdown {
    float: left;
    display: block;
    text-align: left;
    width: 100%;
    height: auto;
  }
  .copyright p {
    text-align: center;
  }
    
  .dropctr {
    width: 100%;
    float: left;
    background-color: #c7954c;
    overflow: visible;
    height: auto;
    z-index: 4000;
  }
  
  .dropdown-content a{
    margin-left: 60px;
  }
  .column {
    padding-top: 0px;
    float: left;
    width: 50%;
  }
  .major {
    text-align: center;
  }
}