body {
    background-color: rgb(255, 255, 255);
  }
  
  h1 {
    color: rgb(0, 0, 0);
    margin-left: 20px;
    font-family: "Big Shoulders", sans-serif;
    font-size: 3em;
    font-weight: 600;
    font-style: normal;
  }

  .header {
    background: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 50;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}
.logo img {
    height: 200px;
    max-width: 100%;
    width: auto;
    margin-right: 10px;
}
.content {
    margin: 100px auto;
    max-width: 1200px;
    padding: 20px;
    background: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

a:link {
  text-decoration: none;
	color:  #575757;
}
a:visited {
  text-decoration: none;
	color: darkslategrey;
}

a:hover {
	text-decoration: none;
	color: #4f9bd7;
	
}


.assign {
  display: flex;
  background-color: #A1B2C5;
  text-align: left;
  font-family: "Raleway", sans-serif;
  font-size: 1.25em;
  padding: 20px;
	margin-left: 30px;
}

.col-1 {width: 8.33%;} 
.col-2 {width: 16.66%;} 
.col-3 {width: 25%;} 
.col-4 {width: 33.33%;} 
.col-5 {width: 41.66%;} 
.col-6 {width: 50%;} 
.col-7 {width: 58.33%;} 
.col-8 {width: 66.66%;} 
.col-9 {width: 75%;} 
.col-10 {width: 83.33%;} 
.col-11 {width: 91.66%;} 
.col-12 {width: 100%;} 