/*Structure*/

body{
  font-family: 'Times New Roman', Times, serif;
  background-repeat: no-repeat;
  background-position: center;
  background-color: lightgray;
}

.assignmentsButton{
  background-color: black;
  color: white;
  padding: 15px;
  font-size: 11px;
  border: none;
  cursor: pointer;
}

.dropdown{
position: relative;
display: inline-block
}

.dropdownContent{
  display: none;
  position: absolute;
  background-color: white;
  min-width: 150px;
  box-shadow: 0px  8px 16px 0px rgba(0, 0, 0, 0.2);
 
  z-index: 1;
}

.dropdownContent a{
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}
.dropdownContent a:hover {background-color: #f1f1f1}
.dropdown:hover .dropdownContent {
  display: block;
}

.dropdown:hover .assignmentsButton {
  background-color: gray;
}

.img {
  width: 300px;
  height: 150px;
}

.assignment-row {
  display: flex;
  margin: 0;
  height: 300px;
  background-color: lightsalmon;
}

/*Typography*/
h3 {
  text-align: center;
  font-size: 30px;
}


h1 {
  font-size: 20px;
}

h2 {
  text-align: center;
  font-size: 50px;
}

.assignmentFont {
  text-align: center;
  margin-right: 2%;
  overflow: auto;
}

/*Flexbox*/
@media (min-width: 900px) {
  #main{
    display: flex;
  }
  .assignmentcolumns {
    flex: 1;
  }
}