<meta name="viewport" content="width=device-width, initial-scale=1.0"/>

/****** BOX-SIZING / CLEAR FIX ******/
* html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
} */

.group:after {
  content: "";
  display: table;
  clear: both;
}

/****** FONT ******/
@font-face {
    font-family: Cochin;
    src: url(https://theotherpaul.s3.amazonaws.com/LibreBaskerville-Bold.ttf);
}

/****** BODY ******/
body {
  margin: 0px;
  margin-right: -.7%;
}

header {
  top: 0;
  width: 100%;
  overflow: hidden;
  border-bottom: 2px solid;
  background-image: linear-gradient(to top, #d5dee7 0%, #ffafbd 0%, #c9ffbf 100%);
}

h1 {
  text-align: center;
  font-family: Cochin, Serif;
  letter-spacing: .15em;
  font-size: 2em;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1em;
  text-transform: uppercase;
}

.group {
  width: 100%;
  margin: 0 auto;
}

.left, .center, .right {
    padding-bottom: 25px;
    z-index: -1;
}

.left {
  float: left;
  width: 33%;
  height: 100vh;
  border-right: 2px solid black;
  padding-top: 1.5em;
  overflow: auto;
}

.center {
  float: left;
  width: calc(33%);
  height: 100vh;
  border: 0px;
  background: white;
  padding-top: 1.5em;
  overflow: auto;
}

.right {
  float: left;
  width: 33%;
  height: 100vh;
  border-left: 2px solid black;
  padding-top: 1.5em;
  overflow: auto;
}

/****** TENDER BUTTON TEXT ******/
p {
  padding: 0 1rem 0 1.5rem;
  font-family: Cochin;
  line-height: 1.225em;
  letter-spacing: .5px;
  text-transform: uppercase;
}

p.poemtext::first-letter { 
    text-transform: uppercase;
}

.poemtext {
  text-transform: none;
}

/****** ABOUT POPUP ******/
.about {
  text-transform: none;
  text-align: center;
  position: absolute;
  right: 10px;
  line-height: 1.5em;
  font-size: .75em;
  top: .9em;
}

.x{
  position:relative;
  top: 3px;
  text-align:left;
  font-size: 40px;
  font-family: Helvetica Neue;
  font-weight: 100;
  padding-right: 5px;
}

.x:hover{
  color: hotpink;
  opacity: .75;
  transition: all 0.8s linear;
  cursor: pointer;
}

.popup{
  text-transform: none;
  text-align: left;
  position: absolute;
  top: 0;
  right: -1px;
  background-color:white;
  border-bottom: 2px solid black; 
  padding: .5em 0 .5em 15px;
  font-size: .6em;
  line-height: 1.225em;
  letter-spacing: .5px;
  height: 3.1em;
  overflow: scroll;
  ::-webkit-scrollbar {
      width: 15px;}
}

a {
  color: inherit;
  text-decoration: underline;
}

/* ABOUT BUTTON */
#hide2 {
  font-size: 1.55em;
}

#hide2:active {
  outline: none;
  border: none;
}

#hide2:focus {outline:0;}

#hide2:hover{
  color: white;
  opacity: .75;
  transition: all 0.8s linear;
  cursor: pointer;
}

/* ORIGINAL TEXT BUTTON */
/* #hide3 {
  font-size: 1.55em;
  position: absolute;
  left: 1em;
  top: 3.85em;
}

#hide3:active {
  outline: none;
  border: none;
}

#hide3:focus {outline:0;}

#hide3:hover{
  color: white;
  opacity: .75;
  transition: all 0.8s linear;
  cursor: pointer;
} */

/****** BUTTON ******/
button {
  width: 2em;
  height: 2em;
  border-radius: 50%;
  border: 2px solid black;
  margin-left: calc(100%/2 - 20px);
  margin-bottom: 10px;
  text-align: center;
  box-sizing: border-box;
  background-color: white;
  transition: 1s;
}

button:active {
  outline: none;
  border: none;
}

button:focus {outline:0;}

button:hover{
  background-color:pink;
  transition: all 0.8s linear;
  cursor: pointer;
}

/****** TABLET AND MOBILE******/

/******@media only screen and (max-width: 812px)******/

@media all
and (max-width : 50em){
  .left, .center, .right {
    width: 100%;
    height: 15em;
    margin-top: 0;
    border: 0;
    font-size: 2em;
    line-height: 2.4em;
    padding-top: .5em;
  }
  .center {
    border-top: 2px solid black;
    border-bottom: 2px solid black;
  }
  button{
    margin-left: calc(100%/2 - 35px);
  }
  .hide {
    display: none;
  }
}

/* @media only screen
and (max-device-width : 50em){
  .left, .center, .right {
    width: 100%;
    height: 25em;
    margin-top: 0;
    border: 0;
    font-size: 2em;
    line-height: 2.4em;
    padding-top: .5em;
  }
  .center {
    border-top: 2px solid black;
    border-bottom: 2px solid black;
  }
  button{
    margin-left: calc(100%/2 - 35px);
  }
  .hide {
    display: none;
  }
} */

/****** MOBILE LANDSCAPE MODE ******/

/****** @media only screen
and (min-device-width : 0px)
and (max-device-width : 812px){
    .left, .center, .right {
      width: 100%;
      height: 20em;
      margin-top: 0px;
      border: 0;
  }
} ******/

