@import url('https://fonts.googleapis.com/css?family=Play');


*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body{
    position: relative;
    width: 100%;
    height: 100%;
    font-family: 'Play', sans-serif;
    background-color: #000000;
}

section{
    position: absolute;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    margin: auto;
    background-color: #4a4848;
}

h1{
    position: absolute;
    top: 10px;
    text-align: center;
    width: 100%;
    font-size: 2em;
    color: #fff;
}

p{
    color: #ccc;
    padding: 5px;
    text-align: center;
}

textarea{
    position: absolute;
    width: 500px;
    height: 200px;
    background: #292929;
    color: #ccc;
    padding: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: auto;
    outline: none;
}

button{
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Play', sans-serif;
    font-size: 1.2rem;
    color: #fff;
    padding: 8px;
    outline: none;
    border:none;
    background: #3a3846;
    cursor: pointer;
    -webkit-box-shadow: 2px 3px 0px #fff;
    box-shadow: 2px 3px 0px #fff;
}

button:hover{
    background: #42404b;
}

button:active{
    background: #3a3846;
}

section a{
    text-decoration: none;
    color: #ccc;
    font-size: .6em;
    position: absolute;
    bottom: 5px;
    text-align: center;
    width: 100%; 
}

div{
    display: none;
    border-style: solid;
    border-width: 0 10px 0 10px;
    border-color: #fff ;
    /*border-left: 10px solid #fff;
    border-right: 10px solid #fff;*/
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 35px;
    height: 35px;
    
    -webkit-transition: .5s ease;
    transition: .3s ease;
}

.play{
    border-left: none;
    border-right: none;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 17.5px 0 17.5px 35px;
    border-color: transparent transparent transparent #fff;
    
    -webkit-transition: .5s ease;
    transition: .3s ease;
}

body > p{
    text-decoration: none;
    color: #ccc;
    font-size: .8em;
    position: absolute;
    bottom: 0;
    text-align: center;
    width: 100%;
}

body >p a{
    color: #fff;
}