

/* *************************** GENERAL *************************** */

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  display: flex;
  flex: 1;
}

.single-page {
  background-image: url("images/manager.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  
  
  background-color: #333;
  
  
  width: 100%;
  padding-bottom: 40px;
}

.single-page-logo {
  margin-top: 40px;
  margin-bottom: 20px;
  max-width: 400px;
}

.single-page-content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  padding: 30px;
  margin-bottom: 20px;
  
  background-color: rgb(0 70 70);
  color: rgb(220, 220, 220);
  
  box-shadow: 2px 2px 4px 0px #0004;
}

.single-page-heading {
  text-align: center;
  margin-top: 84px;
  margin-bottom: 24px;
  font-size: 2rem;
  color: rgb(240, 240, 240);
  text-shadow: 2px 2px 4px #0004;
}

.no-margin-top {
  margin-top: 0;
}