* {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", Arial;
  color: white;
  /* font-family: "Open Sans", "Helvetica Neue",Helvetica,Arial,sans-serif; */
  font-weight: 400;
  padding: 0;
  margin: 0;
  font-size: 20px;
}

.page1 {
  background: #fdb42e;
  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(150deg, #fdb42e, #ea3c3c);
  color: white;
  min-height: 80vh;
}

#center {
  font-size: 35px;
  text-align: center;
  line-height: 45px;
  margin: auto;
  right: 20px;
  left: 20px;
  position: absolute;
  top: 50%;
  margin-top: -50px;
  /*width: 100%; */
}

footer {
  font-size: 15px;
  text-align: center;
  background: black;
  line-height: 45px;
  margin: auto;
  /*width: 100%; */
}

a {
  color: white;
  word-break: break-word;
}
a:hover {
  text-decoration: none;
}

.port {
  border-radius: 50%;
  position: absolute;
  top: 10vh;
  left: 12vw;
  width: 40%;
  z-index: 5;
  box-shadow: rgba(255, 255, 255, 0.768627451) -3vw -2vh;
}

.page1 .text {
  position: relative;
  z-index: 10;
  padding-left: 50%;
  padding-right: 10%;
  padding-top: 20vh;
  padding-bottom: 50px;
}
@media only screen and (max-width: 900px) {
  .page1 .text {
    padding-left: 10%;
    padding-top: 40vh;
  }
}
@media only screen and (max-width: 650px) {
  .page1 .text {
    padding-left: 10%;
    padding-top: 32vh;
  }
}
.page1 .text h1 {
  font-weight: 700;
  font-size: 3.4em;
}
@media only screen and (max-width: 370px) {
  .page1 .text h1 {
    font-size: 2.9em;
  }
}
.page1 .text h2 {
  font-weight: 500;
  font-size: 1.9em;
}
.page1 .text p {
  font-weight: 300;
  font-size: 1.3em;
  text-shadow: rgba(0, 0, 0, 0.7607843137) 3px 2px 4px;
}

@media only screen and (max-width: 900px) {
  .port {
    width: 60%;
  }
}
@media only screen and (max-width: 760px) {
  .port {
    width: 70%;
  }
}
.textshadowBlack {
  text-shadow: rgba(0, 0, 0, 0.7215686275) 3px 3px 6px;
}

.fullWrapper {
  min-height: 80vh;
  position: relative;
}

.fullWrapper .text {
  position: relative;
  z-index: 20;
}

img.full {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
}

.defaultPadding {
  padding: 10vh 20vw;
}

.defaultMargin {
  margin: 10vh 20vw;
}

.whiteWrapper {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 30px;
}

h3 {
  margin-top: 0;
  font-size: 3em;
  font-weight: 300;
}
@media only screen and (max-width: 650px) {
  h3 {
    font-size: 2.4em;
  }
}
@media only screen and (max-width: 370px) {
  h3 {
    font-size: 2.1em;
  }
}

.pageImage {
  -o-object-fit: cover;
     object-fit: cover;
  float: right;
  width: 30vw;
}

.pageContact {
  min-height: 50vh;
}
.pageContact p {
  font-size: 1.5em;
  font-weight: 200;
}
@media only screen and (max-width: 370px) {
  .pageContact p {
    font-size: 1.2em;
  }
}

@media only screen and (max-width: 1000px) {
  .defaultPadding {
    padding: 6vh 10vw;
  }
}
@media only screen and (max-width: 650px) {
  .defaultPadding {
    padding: 40px 20px;
  }
}
.pagePastProjects h3 {
  color: white;
}

.projectWrapper {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

.project {
  width: 45%;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 7px;
}
.project img {
  width: 100%;
  margin: 15px 0;
}
.project p {
  font-weight: 400;
  font-size: 1em;
  margin: 0;
}

@media only screen and (max-width: 650px) {
  .project {
    width: 100%;
  }
}
@media only screen and (max-width: 650px) {
  .pageTeaching .row .date {
    width: 33%;
  }
  .pageTeaching .row .topic {
    margin-left: 2%;
    width: 65%;
  }
}

.pageTalks img {
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
}

.flex {
  display: flex;
  justify-content: space-between;
}

.row {
  display: flex;
  padding-bottom: 30px;
}
.row .mentor_type {
  font-weight: 300;
}
.row .date, .row .image_link {
  width: 25%;
  font-weight: 200;
  text-align: center;
  margin-right: 2%;
}
.row .date .year, .row .image_link .year {
  font-size: 1.6em;
  font-weight: 200;
}
.row .image_link {
  margin-right: 20px;
}
.row .image_link img {
  width: 100%;
  border-radius: 10%;
}
.row .topic {
  width: 73%;
}
@media only screen and (max-width: 500px) {
  .row .date {
    width: 30%;
  }
  .row .topic {
    width: 68%;
  }
}
@media only screen and (max-width: 400px) {
  .row .date .year {
    font-size: 1.4em;
  }
}
@media only screen and (max-width: 350px) {
  .row .date .year {
    font-size: 1.3em;
  }
}

@media only screen and (max-width: 650px) {
  .page5 img {
    width: 60vw;
  }
}
.blackColor {
  color: black;
}
.blackColor a {
  color: black;
}

.pageCV .row .date {
  font-size: 1.3em;
}

.pageResearch .row .date {
  font-weight: 300;
}
.pageResearch .row .date .year {
  font-weight: 300;
}

.pageGarden {
  color: #2d6d36;
  background: linear-gradient(50deg, #fdf8e9 0%, #f6e7a4 100%);
}
.pageGarden a {
  color: #2d6d36;
  text-decoration: none;
}
.pageGarden a:hover {
  text-decoration: underline;
}
.pageGarden p {
  font-size: 1.7em;
  font-weight: 300;
}
.pageGarden .logo {
  display: inline-block;
  width: 80px;
  position: relative;
  top: 14px;
  margin-right: 20px;
}
@media only screen and (max-width: 900px) {
  .pageGarden h3 {
    font-size: 2em;
  }
  .pageGarden .logo {
    width: 60px;
  }
}
@media only screen and (max-width: 500px) {
  .pageGarden h3 {
    font-size: 1.6em;
  }
  .pageGarden .logo {
    width: 30px;
    top: 5px;
    margin-right: 10px;
  }
}

.mainContainer {
  color: black;
}/*# sourceMappingURL=css-bruenner.css.map */