body {
    margin: 0;
}

.assignment {
    border: 2px solid #ff2121;
    padding: 10px;
    margin: 10px;
    border-radius: 25px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

/* Example navbar; refactor to needs
.topnav {
  background-color: #333;
  overflow: hidden;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}
*/