/* Setup */
* { box-sizing: border-box; }
html, body { height: 100%; font-family: "EB Garamond", serif; }

/* Menu */
.home-menu {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: saturate(180%) blur(20px);
  box-shadow: 0 -1px 0 #fff inset;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.home-menu .pure-menu-heading {
  color: #111;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
  font-weight: 600;
  font-size: 200%;
  text-transform: none;
}


/* Splash */
.splash-container {
  z-index: 1;
  width: 100%;
  height: 80%;
  background-image: url('splash.jpg');
  background-size: cover;
  background-position: bottom;
  display: flex;
  align-items: center;
  justify-content: center;
}

.splash {
  text-align: center;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  font-size: 120%;
  padding: 2em;
}

.splash .pure-button {
  text-shadow: none;
}

/* Conteúdo */
.subheader {
  padding: 0 2em;
}

.placeholderimg {
  width: 100px;
  height: 100px;
  margin: 1.5em 0 1em 2em;
  float: right;
  border-radius: 50px;
  position: relative;
  border: 1px solid #ccc;
  background: #fff;
  background-size: cover;
}

.imgyuri {
  background-image: url('yuri.jpg');
}

.imgmatheus {
  background-image: url('matheus.jpg');
}

.imgguilherme {
  background-image: url('guilherme.jpg');
}

.membros, .servicos {
  background: #eee;
  border: 1px solid #ccc;
  border-width: 1px 0 1px 0;
  box-shadow: 0 -1px 0 #fff inset, 0 1px 0 #fff inset;
  text-shadow: 0 1px 0 #fff;
}

.membros div, .servicos div {
  padding: 0.5em 2em;
  text-align: justify;
}

.servicos div h1 {
  text-align: center;
}

/* Footer */
.footertext {
  padding: 5em 2em 2em 2em;
}