* {
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
  margin: 0;
  overflow: visible;
  font-family: Titillium Web, sans-serif;
}

body {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 1);
  display: flex;
  margin: 0;
  flex-direction: column;
  row-gap: 2em;
}

p {
  margin: 0;
  padding: 0;
  font-size: 1em;
}

h3 {
  margin: 0;
  padding: 0;
  font-size: 1.2em;
}

a:link {
  color: #ceaf00;
}

a:visited {
  color: #a08800;
}

a:hover {
  color: #887400;
}


.bold {
  font-weight: bold;
}

.header {
  height: 10em;
  background: rgba(73, 91, 158, 1);
  overflow: visible;
  display: flex;
  flex-direction: row;
  gap: 2em;
  padding: 1em;
}

.footer {
  height: fit-content;
  background: rgba(73, 91, 158, 1);
  color: white;
  display: flex;
  justify-content: left;
  text-align: left;
  padding: 1em;
}

.footer a:link {
  color: #FFD700;
}

.footer a:visited {
  color: #bda000;
}

.footer a:hover {
  color: #ffe760;
}



.headline {
  width: 100%;
  color: rgba(255, 255, 255, 1);
  font-weight: 800;
  font-size: 3em;
  opacity: 1;
  text-align: center;
  align-self: center;
}

.profile_pic {
  opacity: 1;
  border-radius: 50%;
  width: 10em;
  align-self: flex-start;
  aspect-ratio: 1 / 1;
}

.box_shadow {
  box-shadow: 0em 0.25em 0.25em rgba(0, 0, 0, 0.25);
}

.center_child {
  display: flex;
  width: 100%;
  justify-content: center;
}

.project_list {
  /* display: flex;
  height: fit-content;
  padding: 2em;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em; */
  --num_cols: 1;
  margin-left: 2em;
  margin-right: 2em;
  columns: var(--num_cols);
}

.project {
  width: 25em;
  margin: 1em;
  height: fit-content;
  overflow: hidden;
  background: #CCD7FF;
  padding: 0.5em;
  opacity: 1;
  border-radius: 1em;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  row-gap: 0.2em;
}

.project_span_image {
  /* width: 100%; */
  width: auto;
  opacity: 1;
  border-radius: 1em;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}