html {
  height: 100%;
  background-color: white;
  margin: 3%;
}

body {
  height: 100%;
  font-family: "Lato";
  font-size: 16px;
}

a {
  /* text-decoration: none; */
  color: rgb(175, 0, 0);
}

#page_logo {
  object-fit: scale-down;
  max-width: 20%;
  position: absolute;
  top: 10px;
  left: 55px;
}

.line {
  border-bottom: 2px solid rgb(175, 0, 0);
  margin-left: 0px;
  margin-top: 40px;
  width: 100%;
}

.header_box {
  width: 80%;
  border: 0.25em solid rgb(175, 0, 0);
  padding: 1em;
  margin: auto; /* for some reason, this centers the div in the center */
}

img {
  max-width: 100%;
  height: auto;
}

.column_header {
  font-size: large;
  text-align: left;
  font-weight: bold;
  color: black;
  text-decoration: underline;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  text-align: center;
}

.flex-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  align-content: flex-start;
  flex: 1;
  margin: 20, 30, 30, 30;
}
/* 
.column1 {
  flex-basis: 25%;
} */

.column2 {
  flex-basis: 75%;
}

.edMaterials {
  display: flex;
  background-color: white;
  margin: auto;
  background-size: cover;
  cursor: pointer;
  /* border: none; */
  align-items: center;
  margin-top: 20px;
}

.box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 200px;
  width: 200px;
  color: white;
  margin: 20px;
  position: relative;
}

.box_logo {
  border-radius: 50%;
  opacity: 20%;
  float: left;
  width: 50%;
}

.inner_box {
  width: 70%;
  height: 80%;

  margin-top: 20%;
  margin-left: 20%;
  float: right;
  position: absolute;
  text-align: right;
}

.light-grey {
  background-color: rgb(240, 239, 239);
}
