﻿* {
    font-family: sans-serif;
    color: rgba(0,0,0,0.75);
}

body {
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
    padding: 0px 30px;
    background: #ddd;
}

.wrapper {
    max-width: 960px;
    width: 100%;
    margin: 30px auto;
    transform: scale(0.8);
}

.landing-page {
    max-width: 960px;
    height: 80vh;
    margin: 0;
    box-shadow: 0px 0px 8px 1px #ccc;
    background: #fafafa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

svg {
    width: 50%;
    max-height: 225px;
    height: auto;
    margin: 0 0 15px;
}

h1 {
    font-size: 48px;
    margin: 0;
}

p {
    font-size: 16px;
    width: 35%;
    margin: 16px auto 24px;
    text-align: center;
}

button {
    border-radius: 50px;
    padding: 8px 24px;
    font-size: 16px;
    cursor: pointer;
    background: #4281c6;
    color: #fff;
    border: none;
    box-shadow: 0 4px 8px 0 #ccc;
}

.lottie {
    height: 40%;
}

@media only screen and (min-width: 568px) and (max-width: 1068px) {
    h1 {
        font-size: 82px;
    }

    p {
        font-size: 24px;
    }

    button {
        font-size: 32px;
        padding: 16px 32px;
    }

    .lottie {
        width: 50%;
    }
}
