html, body {
    margin:0;
    padding:0;
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}

p {
    line-height: 26px;
}

p.lead {
    font-size:22px;
}

.wrapper {
    position: fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.header {
    width:600px;
    height:400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.header img {
    width:300px;
}

.header h1 {
    margin:0;
    padding:0;
    font-size: 100px;
    text-align: center;
}

.header h1 span {
    font-weight: 400;
}

.header p {
    font-size:22px;
    margin:0;
    padding:0;
    text-align: center;
}

.header p.mail {
    margin-top:20px;
}

a {
    font-size:18px;
    font-weight: light;
    color:#af84ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.page {
    width:800px;
    margin:40px auto;
}

.page-header {
    height:100px;
    margin-bottom:50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-header h1 {
    margin:0;
    padding:0;
}

.page-header h1 span {
    font-weight: 400;
}


.title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height:80px;
}

.title img {
    height: 100%;
    margin-left:-20px;
}

.post {

}

.post-header {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin:80px 0;
}

.post-header img {
    width:400px;
    height:400px;
    border-radius: 22px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
}

.post-header h1 {
    margin:0;
    padding:0;
    margin-top:50px;
}

.post-header h2 { 
    margin:0;
    padding:0;
    font-weight: 500;
}

.post-body {
    padding-bottom:200px;
}

.post-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top:100px;
    position: relative;
    padding-left:200px;
}

.post-section.alt {
    padding-left:0;
    padding-right:200px;
}

.post-section img {
    height:400px;
    border-radius: 22px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    position: absolute;
    z-index: 5;
    margin:-150px 0 0 -500px;
}

.post-section.alt img {
    margin:-150px -500px 0 0;
}

.post-section-circle {
    position: absolute;
    border-radius: 100%;
    width:500px;
    height:500px;
    overflow: hidden;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color:#fff;
    position: relative;
    z-index: 10;
}

.post-section-circle h3, 
.post-section-circle p {
    padding:0 50px;
}

.post-section-circle h3 {
    margin:0;
    padding:0;
    font-weight: 600;
}

.post-section-circle p {
    font-size:18px;
}

.post-download {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom:80px;
}

.download {
    border-radius: 22px;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.1);
    background-color: #fff;
    padding:20px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin:0 20px;
    border:1px solid #ececec;
}

.download:hover {
    text-decoration: none;
    border-color: #af84ff;
}

.download img {
    height:40px;
    margin-right:20px;
}

.download .download-body span {
    display: block; 
}

.download .download-body .download-sm {
    color:#2f2f2f;
    font-size: 14px;
}

.download .download-body .download-lg {
    font-size:22px;
    color:#000;
    font-weight:400;
}


@media only screen and (max-width: 800px) {  
    .header {
        width:100%;
    }

    .header h1 {
        font-size: 60px;
    }

    .header p { 
        font-size:20px;
    }

    .page {
        padding:0 20px;
        width:calc(100% - 40px);
        overflow: hidden;
    }

    .page-header {
        height: auto;
        padding:0 20px;
        justify-content: center;
        flex-direction: column;
    }

    .page-header h2 {
        margin:0;
        padding:0;
        display: none;
    }

    .post-header img {
        width:80%;
        height:80%;        
    }

    .post-header h1, 
    .post-header h2 {
        text-align: center;
    }

    .post-download {
        flex-direction: column;
    }

    .download {
        margin:10px 0;
    }

    .post-section {
        padding-left:0;
        padding-right:0;
        padding-top:200px;
        margin-top:50px;
    }

    .post-section.alt {
        padding-left:0;
        padding-right:0;
    }

    .post-section img {
        height:auto;
        width:180px;
        margin:0 0 0 -90px;
        top:0;
        left:50%;
    }

    .post-section.alt img {
        margin:0 0 0 -90px;
    }

    .post-section-circle {
        border-radius: 0;
        z-index: 1;
        padding-top:150px;
    }
}