/* fredericka-the-great-regular - latin */
@font-face {
    font-family: 'Fredericka the Great';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/fredericka-the-great-v6-latin-regular.eot'); /* IE9 Compat Modes */
    src: local('Fredericka the Great'), local('FrederickatheGreat'),
         url('../fonts/fredericka-the-great-v6-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
         url('../fonts/fredericka-the-great-v6-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
         url('../fonts/fredericka-the-great-v6-latin-regular.woff') format('woff'), /* Modern Browsers */
         url('../fonts/fredericka-the-great-v6-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
         url('../fonts/fredericka-the-great-v6-latin-regular.svg#FrederickatheGreat') format('svg'); /* Legacy iOS */
}
/* pt-sans-regular - latin */
@font-face {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/pt-sans-v9-latin-regular.eot'); /* IE9 Compat Modes */
    src: local('PT Sans'), local('PTSans-Regular'),
        url('../fonts/pt-sans-v9-latin-regular.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/pt-sans-v9-latin-regular.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/pt-sans-v9-latin-regular.woff') format('woff'), /* Modern Browsers */
        url('../fonts/pt-sans-v9-latin-regular.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/pt-sans-v9-latin-regular.svg#PTSans') format('svg'); /* Legacy iOS */
}
/* pt-sans-700 - latin */
@font-face {
    font-family: 'PT Sans';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/pt-sans-v9-latin-700.eot'); /* IE9 Compat Modes */
    src: local('PT Sans Bold'), local('PTSans-Bold'),
        url('../fonts/pt-sans-v9-latin-700.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/pt-sans-v9-latin-700.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/pt-sans-v9-latin-700.woff') format('woff'), /* Modern Browsers */
        url('../fonts/pt-sans-v9-latin-700.ttf') format('truetype'), /* Safari, Android, iOS */
        url('../fonts/pt-sans-v9-latin-700.svg#PTSans') format('svg'); /* Legacy iOS */
}

html,
body {
    height: 100vh;
}
body {
    font-family: 'PT Sans', sans-serif;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: normal;
    align-items: stretch;
    align-content: normal;
}

h1,
h2,
h3{
    font-family: 'PT Sans', sans-serif;
    text-transform: uppercase;
    -moz-hyphens: auto;
    hyphens: auto;
    -ms-word-break: break-all;
    word-break: break-all;
    word-break: break-word;
    word-break: normal;
    text-overflow: ellipsis;
}
h1{
    font-size: 2rem;
}
h2{
    font-size: 1.5rem;;
}
h3{
    font-size: 1.3rem;
}
section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    /* display: block; */
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
}
section .container {
    height: 100%;
    position: relative;
    /* background-color: green; */
}
.section {
    flex-direction: column;
    height: 100%;
    flex-wrap: nowrap;
}
#controls {
    margin-top: 1rem;
}
#controls button:last-child {
    margin-left: 10rem;
}
.fa-repeat {
    transform: scaleY(-1) rotate(180deg);
}
header{
    padding: .2rem;
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
}
.header{
    justify-content: center;
}
.header-wrapper{
    border-bottom: 1px solid #ccc;
    justify-content: center;
    padding: .2rem;
}
.btn-primary {
    background-color: #0291bd;
    border: none;
    font-size: 2rem;
    width: 4rem;
    height: 4rem;
    display: inline-block;
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:disabled {
    background-color: #0196c1 !important;
}
.btn-primary:disabled {
    display: none;
}
#display-wrapper {
    position: relative;
    margin: 1rem 0;
    /* box-shadow: -1px 2px 10px #e4e4e4; */
    height: 100%;
    display: inline-block;
}
#start{
    transition: all 1s ease-out;
    transform: scale(1);
}
#start.animation{
    animation-name: animation;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
}
@keyframes animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(2, 145, 189, 0);
    }
    25% {
        -webkit-transform: scale(1.3) rotate(0);
        transform: scale(1.3) rotate(0);
        box-shadow: 0 0 0 0 rgba(2, 145, 189, 0.7);
    }
    75% {
        -webkit-transform: scale(1.3) rotate(360deg);
        transform: scale(1.3) rotate(360deg);
        box-shadow: 0 0 0 10px rgba(2, 145, 189, 0);
    }
    100% {  
        -webkit-transform: scale(1) rotate(360deg);
        transform: scale(1) rotate(360deg);
        box-shadow: 0 0 0 0 rgba(2, 145, 189, 0);
    }
}

#display{
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    align-items: center;
    margin: 0;
    /* background: orange; */
}
#display img {
    padding: 15px;
    max-width: 555px;
    position: relative;
    width: 100%;
    /* border: 3px solid red; */
}
#display h1{
    font-size: 8rem;
    padding: 5rem;
}

footer {
    border-top: 1px solid #ccc;
    padding: 1rem 0;
    background: #0196c1;
    /* padding: 1rem; */
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    display: block;
    flex-grow: 0;
    flex-shrink: 1;
    flex-basis: auto;
    align-self: auto;
}
footer ul {
    display: flex;
    margin: 0;
    align-items: baseline;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}
footer li{
    list-style: none;
    display: inline-block;
    margin-left: 2rem;
    color: #fff;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer a:hover{
    color: #fff;
}
#genre {
    cursor: pointer;
    background: #001068;
    padding: .2rem .5rem;
    border-radius: 6px;
}


