* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: #777;
    background: linear-gradient(
        to right top, 
        rgb(195, 7, 198), 
        rgb(138, 0, 147));
}

.header {
    position: relative;
    height: 85vh;
    background: linear-gradient(
        to right bottom, 
        rgb(99, 161, 135), 
        rgb(47, 76, 88));
    clip-path: polygon(0 0, 100% 0, 100% 70vh, 0 85vh);
}

.logo {
    position: absolute;
    width: 75%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.logo img {
    display: block;
    width: 250px;
    margin: 20px auto;
    border-radius: 24px;
    border: 10px solid rgb(99, 161, 135);
    box-shadow: 0 12px 20px #000;
    animation: rise 2s ease-out;
}

h1 {
    padding-left: 10px;
    color: #fff;
    font-size: 3em;
    text-transform: uppercase;
    letter-spacing: 10px;
    text-shadow: 0 12px 20px #000;
    animation: contract 2s ease-out;
}

.content {
    height: 15vh;
    padding-right: 5%;
    text-align: right;
    backface-visibility: hidden;
}

.content a:link,
.content a:visited {
    display: inline-block;
    color: #fff;
    font-size: 1.8em;
    text-decoration: none;
    transition: all .4s ease-out;
    animation: fall 2s ease-in-out;
}

.content a:hover {
    letter-spacing: 2px;
    transform: rotate(-4deg);
}

@keyframes contract {
    0% {
        opacity: 0;
        letter-spacing: 40px;
    }

    100% {
        opacity: 1;
        letter-spacing: 10px;
    }
}

@keyframes rise {
    0% {
        opacity: 0;
        transform: translateY(75px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}

@keyframes fall {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

    100% {
        opacity: 1;
        transform: translate(0);
    }
}