*{
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'Work Sans', sans-serif;  font-weight: initial;
  list-style-type: none;
}

body{
  background-color:#d0d9ca;
}

.paddingbottom{
  padding-bottom: 3rem;
}

.bodycontent{
  padding: 5%
}

.indent{
  padding-left: 2%;
}

.center{
display: block;
margin-left: auto;
margin-right: auto;
}

.centertext{
  margin: 0 auto;
  text-align: center;
}

/* For the logo*/
.mPlogo1{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mPlogo12{
margin: 100vh;
}

h1 {
    font-weight: 380;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    font-size: 3.2rem;
    line-height: 1;
}

h2 {
    font-weight: 390;
    margin-top: 1rem;
    margin-bottom: 1.4rem;
    font-size: 2.2rem;
    line-height: 1;
}

p{
  font-size: 1.3rem;
  line-height: 2.2rem;
}

.purple{
  color: #7851A9;
  font-size: 1.4rem;
}

@media (min-width: 800px) {
  .centerquestionaire {
    padding-left: 20%;
  }
}

.flex-container{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* max 3 columns */
  gap: 24px;
  background-color: #49A1B7;
  color: white;
  padding: 1.25rem;
  align-items: start;
}

.flex-container > div{
  padding: 1rem;
}

/* No flex needed when using Grid */
.column{
  display: flex;
  flex-direction: column;
}

/* 2 columns on medium screens */
@media (max-width: 1200px) {
  .flex-container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 1 column on small screens */
@media (max-width: 800px) {
  .flex-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.flex-container-writeup{
  font-size: 1rem;
  color:#b8dbd9;
  line-height: normal;
  padding-bottom:1rem;
  font-style: italic;
}

.projectslist{
  font-size:1.3rem;
  padding:.5rem;
  line-height:normal;
}

.projectslist-links{
  text-decoration:none;
  color: white;
}

.footer{
  text-align: center;
  padding-top:4rem;
  padding-bottom:4rem;
  color:#7851A9;
  font-size:1.2rem;
}

/* not currently in use*/
.mainT{
  font-size: 4vh;
  font-weight:100;
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

/*
@media screen and (max-width:700px){
  .mPlogo1{
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  body{
overflow-x: hidden;
max-width: 100%;
  }
}*/
