/*body*/

main {
  text-align: center;
}

.container {
  background: #cecece;
  // Overflow technique for collapsing parent
  // overflow: auto;
  padding: 5px;
  
  // Micro Clearfix technique for collapsing parent
  &:before,
  &:after {
    content: " ";
    display: table;
  }

  &:after {
    clear: both;
  }
}
  
.column {
    margin: 1.858736059% auto;
    width: 50%;
  }
  
.spacer {
	padding: 25px;
}

/*display*/

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48pt;
    font-weight: 900;
}

h2 {
	text-align: left;
	font-size: 12pt;
	color: #939393;
	text-transform: uppercase;
	font-family: 'Raleway', sans-serif;
	letter-spacing: 0.5pt;
}

.emoji {
	font-size: 16pt; 
}
 
/*copy*/

.section-break {
  background-color: transparent;
  border: 0;
  border-top: 1px solid #d2d2d2;
  display: block;
  height: 0;
  margin: 3rem auto 3rem;
  text-align: center;
  width: 50%;
}

p {
  font-family: 'Raleway', sans-serif;
  font-weight: 200;
  font-size: 14pt;
  text-align: left;
  line-height: 24pt;
  color: #474747;
}

/*iframes*/

.iframe-container-video {
margin: 20px auto;
max-width: 100%;
width: 600px;
height: 300px;
}

@media only screen and (max-width: 992px) {
	.iframe-container{
		width: 80%;
		height:400px;
	}
}
@media only screen and (max-width: 600px) {
   .iframe-container{
		width: 100%;
		height:500px;
	}
}

.iframe-container-audio {
margin: 20px auto;
max-width: 100%;
width: 600px;
height: 150px;
}

@media only screen and (max-width: 992px) {
	.iframe-container{
		width: 80%;
		height:400px;
	}
}
@media only screen and (max-width: 600px) {
   .iframe-container{
		width: 100%;
		height:500px;
	}
}

/*links*/

a {
	text-decoration: none;
	color: #000;
	line-height: 16pt;
}

a.underline {
  display: inline-block;
  background-color: #ffd1dc;
  font-weight: bold;
}

a.underline:after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: black;
  transition: width .5s ease, background-color .5s ease;
}

.underline:hover:after {
  width: 100%;
  background: black;
}
