﻿a{
    cursor: pointer;
}
.content > div{
    margin-bottom: 30px;
}
.text {
    width: 95%;
    margin: 0 auto;
    margin-bottom: 30px;
}
.main-image{
    background-image: url("../Images/barn.jpg");
    width: 100vw;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position:center;
    margin-bottom: 30px;
}
#schema {
    width: 800px;
    max-width: 95%;
    height: auto;
    margin-bottom: 30px;
}
.download-section{
    padding: 30px 15px;
    width: 100%;
    background-color: var(--yellow-300);
}
.download-container{
    display: flex;
    justify-content: center;
    padding-bottom: 30px;
}
.download-option {
    margin: 0 40px;
    display: inline-flex;
    background-color: black;
    color: white;
    border-radius: 20px;
    align-content: center;
    width: auto;
    height: 120px;
}
.download-option > div{
    margin: 0 15px;
}
.download-icon{
    width: 100px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.download-text{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.download-text:first-child{
    font-size: 1.2em;
}
.download-text > div:nth-child(2){
    font-size: 2em;
    font-weight: bold;
}
#android-logo{
    background-image: url("../Images/android.png");
}
#ios-logo {
    background-image: url("../Images/apple.png");
}
#windows-logo {
    background-image: url("../Images/windows8.png");
}
@media (max-width: 800px) {
    .download-container {
        flex-direction: column;
        align-items: center;
    }
    .download-option {
        margin: 10px 0;
        width: 90%;
    }
}