html, body{
    overflow-x: hidden;
}

.landingParent{
    width: auto;
    height: auto;
    position: relative;
    display: block;
}

.landingMain{
    width: auto;
    height: 120px;
    position: relative;
    display: block;
    background-color: #f7c852;
}

@media screen and (min-width: 1065px){
    .landingPicture{
        width: auto;
        height: 45vh;
        position: relative;
        display: block;
        background-image: url("../pictures/landing.jpg");
        background-position: bottom;
        background-attachment: fixed;
        background-size: cover;
    }
}

@media screen and (max-width: 1065px){
    .landingPicture{
        width: auto;
        height: 45vh;
        position: relative;
        display: block;
        background-image: url("../pictures/landing.jpg");
        background-position: bottom;
        background-attachment: scroll;
        background-size: cover;
    }
}

.landingCenter{
    width: auto;
    height: auto;
    max-width: 400px;
    position: relative;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    font-size: 30px;
    text-align: center;
    font-weight: 800;
    color: white;
}

/* Larger Screen */
@media screen and (min-width: 1000px){
    .learnParent{
        width: auto;
        height: auto;
        position: relative;
        display: flex;
    }
    
    .learnCol{
        width: auto;
        height: auto;
        position: relative;
        display: inline-block;
        padding: 80px 40px;
        text-align: center;
        flex: 1;
    }
    
    .learnColText{
        position: relative;
        display: inline-block;
        padding-left: 60px;
        top: 20%;
        transform: translateY(-20%);
    }
    
    .learnColPicture{
        width: auto;
        height: auto;
        position: relative;
        display: inline-block;
        background-color: #AA151B;
        transform: rotate(20deg);
    }
    
    .learnColPicture img{
        max-height: 450px;
        transform: rotate(-10deg);
    }
}

/* Smaller Screen */
@media screen and (max-width: 1000px){
    .learnParent{
        width: auto;
        height: auto;
        position: relative;
        display: block;
        padding-bottom: 80px;
    }
    
    .learnCol{
        width: auto;
        height: auto;
        position: relative;
        display: block;
        text-align: center;
        flex: 1;
    }
    
    .learnColText{
        position: relative;
        display: inline-block;
        padding: 20px 40px 100px 40px;
    }
    
    .learnColPicture{
        width: calc(100%-100px);
        height: auto;
        max-width: 350px;
        position: relative;
        display: inline-block;
        background-color: #AA151B;
        transform: rotate(20deg);
    }
    
    .learnColPicture img{
        max-height: 450px;
        transform: rotate(-10deg);
    }
}

/* Larger Screen */
@media screen and (min-width: 1210px){
    .aboutParent{
        width: auto;
        height: auto;
        position: relative;
        display: block;
        padding: 40px;
        text-align: center;
    }
    
    .aboutPictureCol{
        width: 400px;
        height: 500px;
        position: relative;
        display: inline-block;
        background-image: url("../pictures/thedoc.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        vertical-align: top;
        border-radius: 15px;
        transform: translateX(40px) translateY(60px);
        z-index: 900;
    }
    
    .aboutCol{
        width: auto;
        height: auto;
        min-height: 600px;
        max-width: 600px;
        position: relative;
        display: inline-block;
        background-color: #e6e6e6;
        padding: 20px 40px 20px 80px;
        vertical-align: top;
        border-radius: 15px;
    }
    
    .aboutColText{
        width: auto;
        height: auto;
        position: relative;
        display: inline-block;
    }
}

/* Smaller Screen */
@media screen and (max-width: 1210px){
    .aboutParent{
        width: auto;
        height: auto;
        position: relative;
        display: block;
        padding: 20px;
        text-align: center;
    }
    
    .aboutPictureCol{
        width: 70%;
        height: 500px;
        position: relative;
        display: inline-block;
        background-image: url("../pictures/thedoc.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        vertical-align: top;
        border-radius: 15px;
        transform: translateY(50px);
        z-index: 900;
    }
    
    .aboutCol{
        width: auto;
        height: auto;
        min-height: 600px;
        max-width: 600px;
        position: relative;
        display: inline-block;
        background-color: #e6e6e6;
        padding: 100px 20px 20px 20px;
        vertical-align: top;
        border-radius: 15px;
    }
    
    .aboutColText{
        width: auto;
        height: auto;
        position: relative;
        display: inline-block;
    }
}