.img-container {
  display: grid;
  height: 100%;
}
.fill {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
}
.header-photo {
  max-width: 100%;
  max-height: 100vh;
  margin: auto;
  object-fit: cover;
  object-position: top;
}
.flex-container {
    display: flex;  
    justify-content: space-around;
    align-items: center;
} 
.flex-container2 {
  display: flex;  
  justify-content: space-between;
  align-items: flex-end;
}
.flex-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin: 0;
  min-height: 100vh;
}

.header {
  height: 500px;
  background: darkmagenta;
  color: white;
}

.footer {
  height: 72px;
  background: #eee;
  color: darkmagenta;
}

.sidebar {
  width: 300px;
  background: royalblue;
  box-sizing: border-box;
}

.card {
  border: 1px solid #ee0404;
  box-shadow: 2px 4px 16px rgba(0,0,0,.06);
  border-radius: 4px;
}

*{
  margin: 0;
  padding: 0;
  color: black;
}

.FlowOne {
  flex-basis: 420px;
    flex-grow: 0;
    flex-shrink: 0;
    margin: 20px;
}

.FlowTwo {
  margin-left: 300px;
  margin-right: 300px;
  margin-top: 30px;
  margin-bottom: 30px;
}