/* Color Theme Swatches in Hex 
.zen-and-tea-1-hex { color: #10222B; }
.zen-and-tea-2-hex { color: #95AB63; }
.zen-and-tea-3-hex { color: #BCD685; }
.zen-and-tea-4-hex { color: #E1F0D5; }
.zen-and-tea-5-hex { color: #F5FFE0; }*/

*{
  box-sizing: border-box;
}

header {
  background-color: #10222B;opacity: 0.6;
  height: 25px;
}

nav {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding-top: 3px;
}

nav ul {
    display: flex;
}

nav ul li a {
  padding: 1rem;
  text-decoration: none;
  font-family: 'Questrial', sans-serif;
  font-size: 18px;
  color:#E1F0D5;
}

body {
  background-color: #E1F0D5; 
}

main {
  padding-top: 50px;
}

img {
  border-radius: 50%;
  box-shadow: 0 0 50px #95AB63;
  width: 200px;
  height: 200px;
  margin-top: 30px;
}

#breathe {
  display: flex;
  align-items: center;
  flex-direction: column;
}

iframe {
  box-shadow: 0 0 50px #95AB63;
  margin: 0 auto;
  border-radius: 5px;
  margin-top: 50px;
}

#iframe {
  display: flex;
  flex-direction: column;
}

h1{
  font-size: 50px;
  font-family: 'Playfair Display', serif;
  color: #10222B;
  text-align: center;
  padding-bottom: 10px;
  padding-top: 10px;
  margin: 0 20rem;
  border-bottom: solid 10px;
  border-color: #95AB63;
}

h2{
  font-family: 'Playfair Display', serif;
  text-align: center;
  font-size: 2rem;
  margin:1rem;
  color: #10222B;
}

 h3{
  font-size: 25px;
  font-family: 'Playfair Display', serif;
  color: #F5FFE0;
  text-align: center;
  margin-top: auto;
}

h4{
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  color: #10222B;
  text-align: center;
  margin-top: auto;
  margin-bottom: auto;
}

article {
  font-family: 'Questrial', sans-serif;
  font-style: bolder;
  text-align: center;
  font-size: 1.5rem;
  line-height:150%;
}

fieldset {
  text-align: center;
  font-family: 'Questrial', sans-serif;
  font-style: bold;
  width: 700px;
  border: 8px solid #95AB63;
  border-radius: 10px;
  box-shadow: 3px 2px 5px #10222B;
  padding: 50px;
  margin: 0 auto;
  margin-top: 2rem;
}

input {
  margin: 5px;
}

fieldset #name {
  margin-bottom: 20px;
}

fieldset p {
  margin: 5px;
}

.button2div {
  margin-top: 25px;
  font-family: 'Questrial', sans-serif;
  text-align: center;
  margin: 0 auto;
  
}

.button {
  background-color: #95AB63;
  margin-top: 50px;
  height: 50px;
  width: 150px;
  border: none;
  border-radius: 10px;
  padding: .3rem 1rem;
  text-decoration: none;
  color: #F5FFE0;
  margin-top: 25px;
  font-family: 'Questrial', sans-serif;
  transition: all 0.5s;
  cursor: pointer;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

.buttonChill {
  background-color: #95AB63;
  margin-top: 50px;
  height: 50px;
  width: 150px;
  border: none;
  border-radius: 10px;
  padding: .3rem 1rem;
  text-decoration: none;
  color: #F5FFE0;
  margin-top: 25px;
  font-family: 'Questrial', sans-serif;
  transition: all 0.5s;
  cursor: pointer;
  box-shadow: 0 9px #999;
  outline: none;
}

.buttonChill:hover {
  background-color: #95AB63;
  
}

.buttonChill:active {
  background-color: #95AB63;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
}

footer {
  font-size: 25px;
  font-family: 'Questrial', sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 33rem;
  float:right;
  color: #10222B;
  margin-right:3rem;
  padding:15px;
  background: #95AB63;
  border-radius: 5px;
  opacity: 75%;
}

.quote {
  font-size: 75px;
  line-height:10%;
  margin-bottom:0;
  }