body{
    margin: 0;
    padding: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    box-sizing: border-box;
}

h1{
    font-weight: bold;
    font-size: 3rem;
    padding: 10px;
    margin: 0;
    background-color: brown;
    text-align: center;
}

.zee,.john,.susan,.sharma,.greg{
    display: flex;
}

.pilot-photos img {
    width: 300px;
    height: 250px;
}

.text{
    text-align: justify;
    margin-right: 15px;
    margin-left: 15px;
}

.end{
    background-color: brown;
    font: 1em tahoma;
    padding: 10px;
    text-align: center;
    font-weight: lighter;
}

/*RESPONSIVE WEBSITE*/

@media screen and (min-width: 320px) and (max-width: 590px) {

    h1{
        font-weight: bold;
        font-size: 15px;
        padding: 10px;
        margin: 0;
        background-color: brown;
        text-align: center;
    }
    
    .zee,.john,.susan,.sharma,.greg{
        display: block;
    }
    
    .pilot-photos img {
        width: 300px;
        height: 250px;
    }
    
    .text{
        text-align: justify;
        margin-right: 15px;
        margin-left: 15px;
    }
    
    .end{
        background-color: brown;
        font: 9px tahoma;
        padding: 10px;
        text-align: center;
        font-weight: lighter;
    }
}

@media screen and (min-width: 591px) and (max-width: 767px) {

    h1{
        font-weight: bold;
        font-size: 25px;
        padding: 10px;
        margin: 0;
        background-color: brown;
        text-align: center;
    }
    
    .zee,.john,.susan,.sharma,.greg{
        display: flex;
    }
    
    .pilot-photos img {
        width: 350px;
        height: 280px;
    }
    
    .text{
        text-align: justify;
        margin-right: 15px;
        margin-left: 15px;
    }
    
    .end{
        background-color: brown;
        font: 13px tahoma;
        padding: 10px;
        text-align: center;
        font-weight: lighter;
    }
    
}