body {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #2f4d40;
    background-image: url("/images/background2.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.top {
    background-color: rgba(0,0,0,0.15);
    display: flex;
    width: 440px;
    flex-direction: column;
    justify-content: space-between;
    border-right: 2px solid rgba(0,0,0,0.2);
}

.top, .left {
    padding: 40px;
}

.container {
    display: flex;
    height: 100vh;
}

.content {
    flex: 1;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.left {
    flex: 33;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.right {
    display: flex;
    flex: 66;
    max-height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.right p:first-of-type {
    margin-top: 1.0rem;
}

.right p {
    font-size: 0.85rem;
    text-align: center;
    margin-left: 30px;
    margin-right: 30px;
    margin-top: 0rem;
    margin-bottom: 0.4rem;
}

.right a {
    text-decoration: none;
    border-bottom: 1px dotted hsla(0,0%,100%,.8);
}

.right a:hover {
    opacity: 0.8;
}

h1, h2, p, label, input, textarea, .message, .radios, a {
    color: white;
    /*font-family: 'Source Sans Pro';*/
    font-family: 'SF Pro', Arial;
    margin: 0;
    opacity: 0.9;
}

p {
    font-weight: 300;
    margin-top: 1.0rem;
    font-size: 1.05rem;
}

h1 {
    font-weight: 700;
    font-size: 3rem;
}

.filter-white {
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(40deg) brightness(103%) contrast(102%);
}

h2 {
    font-size: 1.25rem;
    margin-top: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.screenshot {
    max-height: 80vh;
    max-width: 90vw;
}

.screenshot:nth-of-type(1), .screenshot:nth-of-type(3) {
    display: none;
}

.button {
    padding: 16px;
    background-color: rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.0);
    display: flex;
    border-radius: 2px;
    text-decoration: none;
    color: white;
    transition: background-color .2s ease-in-out, border .2s ease-in-out;
    margin-top: 4px;
    margin-right: 4px;
    min-width: 182px;
    justify-content: center;
}

.buttons {
    display: flex; 
    flex-wrap: wrap;
}

.button:hover {
    background-color: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.0);
}

@media only screen and (min-width:1400px) { 
    .screenshot:nth-of-type(3) {
        display: inline;
        margin-left: 2rem;
    }
}

@media only screen and (min-width:1700px) { 
    .screenshot:nth-of-type(1) {
        display: inline;
        margin-right: 2rem;
    }
}