html,
body {
    font-family: 'Muli', sans-serif;
    margin     : 0px;
    padding    : 0px;
    overflow   : hidden;
    box-sizing : border-box;
    min-height : 100vh;
}

#logo {
    position: absolute;
    top     : 2em;
    left    : 2em;
    width   : 3em;
}

#textBox {
    position  : absolute;
    bottom    : 0;
    left      : 25%;
    width     : 50%;
    min-height: 10em;
    background: rgba(255, 255, 255, 0.5);
    padding   : 2em 5em;

    clip-path : polygon(0 0, 100% 10%, 96% 100%, 2% 100%);
    transition: all .4s ease;
}

@media only screen and (max-width: 1600px) {
    #textBox {
        left : 10%;
        width: 70%;
    }
}

#textBox.turn {
    transform: rotateY(-360deg);
}

#textBox h1 {
    padding: 0;
    margin : 1em 0 .2em 0;
}

#textBox img {
    position: absolute;
    right   : 5em;
    top     : 4em;
    height  : 5em;
}

@media only screen and (max-width: 1100px) {
    #textBox img {
        position  : relative;
        right     : 0;
        top       : 0;
        margin-top: 1em;
        height    : 6em;
    }
}

#textBox #readMore {
    text-align     : right;
    text-decoration: underline;
    font-weight    : bold;
    color          : #055176;
    cursor         : pointer;
}

#modal {
    position  : absolute;
    top       : 0;
    bottom    : 0;
    left      : 0;
    right     : 0;
    background: rgba(0, 0, 0, 0.7);

    padding   : 15vh 15vw 2vh;
    overflow-y: auto;

    display: none;
}

#modal.show {
    display: block;
}

#modal #closeModal {
    position        : absolute;
    top             : 15vh;
    right           : 15vw;
    font-size       : 2em;
    width           : 2.5em;
    height          : 1.66em;
    padding-top     : .33em;
    text-align      : center;
    cursor          : pointer;
    background-color: rgba(0, 0, 0, 0.1);
    color           : #e98900;
}

#modal .modalInner {
    background: rgba(255, 255, 255, 0.8);
    padding   : 2em 2vw;
    min-height: 50vh;
    width     : 66vw;
}
#modal .modalInner img {
    max-width: 100%;
}

#modal p {
    margin-right: 10em;
    margin-left : 1em;
}

button{
	border: none;
	color: white;
	font-weight: bold;
	padding: 10px;
	min-width: 50px;
	min-height: 50px;
	border-radius: 5px;
	position: relative;
	outline: none;
}

button.play {
	background-color: rgb(103, 178, 78);
	min-width: 100px;
	border-radius: 0px 5px 5px 0px;
}

button.play:before {
	content: "";
	position: absolute;
	left: 38px;
	border: 8px solid transparent;
	border-width: 12px 30px;
	border-left-color: #FFFFFF;
	margin-top: -12px;
	background: transparent;
}

button.play:hover {
	background-color: rgb(126, 200, 101);
}

button.play:active {
	background-color: rgb(74, 145, 50);
}

button.stop {
	background-color: rgb(178, 78, 78);
	border-radius: 5px 0px 0px 5px;
}

button.stop:before {
	content: "";
	position: absolute;
	left: 15px;
	width: 21px;
	height: 21px;
	margin-top: -10px;
	background: white;
}

button.stop:hover {
	background-color: rgb(200, 106, 106);
}

button.stop:active {
	background-color: rgb(155, 58, 58);
}