@import url('https://fonts.googleapis.com/css?family=Baloo|Open+Sans');

body {
    background: linear-gradient(to bottom right, #3f6273ff, #3f627300),
                linear-gradient(to top right, transparent, #fff1 50%, transparent 50%, #fff1);
    background-color: #3f6273;
    color: #fff;
    height: 100vh;
    margin: 0;
}

h1, h2, h3 {
    font-family: 'Baloo', cursive;
}

h1 {
    margin: auto;
    font-size: 8em;
    -webkit-animation: pulse 1.3s linear infinite;
            animation: pulse 1.3s linear infinite;
    -webkit-perspective: 1000px;
            perspective: 1000px;
    text-shadow:     0 1px 0 hsl(200,5%,80%),
                     0 2px 0 hsl(200,5%,75%),
                     0 3px 0 hsl(200,5%,70%),
                     0 4px 0 hsl(200,5%,66%),
                     0 5px 0 hsl(200,5%,64%),
                     0 6px 0 hsl(200,5%,62%),
                     0 7px 0 hsl(200,5%,61%),
                     0 8px 0 hsl(200,5%,60%),
    
                     0 0 5px rgba(0,0,0,.05),
                    0 1px 3px rgba(0,0,0,.2),
                    0 3px 5px rgba(0,0,0,.2),
                   0 5px 10px rgba(0,0,0,.2),
                  0 10px 10px rgba(0,0,0,.2),
                  0 20px 20px rgba(0,0,0,.3);
}

h2 {
    font-size: 4rem;
    font-weight: normal;
    margin: 0;
}

h3 {
    font-size: 2rem;
    font-weight: normal;
    margin: 0;
}

section {
    max-width: 800px;
    border: 1px solid white;
    border-radius: 1em;
    margin: 1em 0;
    padding: 1em;
    box-shadow: 5px 5px 5px 0px #0004;
    display: flex;
    flex-direction: column;
}

p {
    font-family: 'Open Sans', sans-serif;
    margin: 1em 0;
}

a {
    color: inherit;
}

img {
    display: block;
    -o-object-fit: scale-down;
       object-fit: scale-down;
    align-self: flex-start;
}

.cover {
    overflow: hidden;
    height: 100%;
    display: grid;
    grid-template-rows: auto max-content;
}

.footer {
    display: flex;
    justify-content: space-between;
}

.footer p {
    margin: 1em;
    flex: 1;
}

.nowrap {
    white-space: nowrap;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

@-webkit-keyframes pulse {
    0% { -webkit-transform: scale(1); transform: scale(1); }
    30% { -webkit-transform: scale(1); transform: scale(1); }
    40% { -webkit-transform: scale(1.08); transform: scale(1.08); }
    50% { -webkit-transform: scale(1); transform: scale(1); }
    60% { -webkit-transform: scale(1); transform: scale(1); }
    70% { -webkit-transform: scale(1.05); transform: scale(1.05); }
    80% { -webkit-transform: scale(1); transform: scale(1); }
    100% { -webkit-transform: scale(1); transform: scale(1); }
}

@keyframes pulse {
    0% { -webkit-transform: scale(1); transform: scale(1); }
    30% { -webkit-transform: scale(1); transform: scale(1); }
    40% { -webkit-transform: scale(1.08); transform: scale(1.08); }
    50% { -webkit-transform: scale(1); transform: scale(1); }
    60% { -webkit-transform: scale(1); transform: scale(1); }
    70% { -webkit-transform: scale(1.05); transform: scale(1.05); }
    80% { -webkit-transform: scale(1); transform: scale(1); }
    100% { -webkit-transform: scale(1); transform: scale(1); }
}
