.landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.landing-page .button--green {
    display: inline-block;
    border-radius: 4px;
    border: 1px solid #3b8070;
    color: #3b8070;
    text-decoration: none;
    padding: 10px 30px;
}

.landing-page .title {
    display: block;
    font-weight: 300;
    font-size: 80px;
    color: #35495e;
    letter-spacing: 1px;
    line-height: normal;
}

.landing-page .subtitle {
    font-weight: 300;
    font-size: 42px;
    color: #526488;
    word-spacing: 5px;
    padding-bottom: 15px;
}

.landing-page .links {
    padding-top: 15px;
}

.landing-page .logo {
    margin-top: 50px;
    animation: pulse 1s;
    width: 600px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.4); }
    100% { transform: scale(1); }
}
