/*
#############
    font
############
*/
body{
    font-family: arial;
    background-color: rgb(238,238,238);
    padding: 0px;
    margin:0px;
}


/* 
###############
    header
###############
*/

header{
    background-color: rgb(68,68,68);
    text-align: center;
    height: 12vh;
    padding-top: 5px;
}

h1{
    color: rgb(221,87,53);
}

header p{
    text-align: center;
    color: grey;
}



/* 
###############
    Main
###############
*/

main{
    background-color: white;
    margin-left: 25%;
    margin-right: 25%;
    padding: 10px;
}

article p:nth-of-type(1){
    background-color: lightgrey;
    border: 1px solid grey;
    padding: 10px;
}
    
article img{
    width: 18%;
}

article div {
    background-image: url("../img/large.jpg");
    padding: 30px;
    height: 300px;
    width: 700px;
}

article:nth-of-type(2) p:nth-of-type(2), article:nth-of-type(3) p:nth-of-type(2), article:nth-of-type(4) p:nth-of-type(2), article:nth-of-type(5) p:nth-of-type(2){
    background-image: url("../img/small.jpg");
    height: 300px;
    color: white;
    padding: 50px;
    width: 700px;
    background-color: lightblue;
}

article:nth-of-type(2) p:nth-of-type(2){
    background-repeat: repeat;
}

article:nth-of-type(3) p:nth-of-type(2){
    background-repeat: no-repeat;
}

article:nth-of-type(4) p:nth-of-type(2){
    background-repeat: repeat-x;
}

article:nth-of-type(5) p:nth-of-type(2){
    background-repeat: repeat-y;
}

article:nth-of-type(6) p:nth-of-type(2), article:nth-of-type(7) p:nth-of-type(2), article:nth-of-type(8) p:nth-of-type(2), article:nth-of-type(9) p:nth-of-type(2){
    background-image: url("../img/large.jpg");
    height: 300px;
    color: white;
    padding: 50px;
    width: 700px;
    background-color: lightblue;
}

article:nth-of-type(6) p:nth-of-type(2){
    background-size: contain;
    background-repeat: no-repeat;
}

article:nth-of-type(7) p:nth-of-type(2){
    background-size: cover%;
    background-repeat: no-repeat;
}

article:nth-of-type(8) p:nth-of-type(2){
    background-size: 50%;
    background-repeat: no-repeat;
}

article:nth-of-type(9) p:nth-of-type(2){
    background-size: 80% 40%;
    background-repeat: no-repeat;

}

article:nth-of-type(10) p:nth-of-type(2), article:nth-of-type(11) p:nth-of-type(2), article:nth-of-type(12) p:nth-of-type(2), article:nth-of-type(13) p:nth-of-type(2){
    background-image: url("../img/small.jpg");
    height: 300px;
    color: white;
    padding: 50px;
    width: 700px;
    background-color: lightblue;
}



article:nth-of-type(10) p:nth-of-type(2){
    background-position: center;
    background-repeat: no-repeat;
}

article:nth-of-type(11) p:nth-of-type(2){
    background-position: right top;
    background-repeat: no-repeat;
}

article:nth-of-type(12) p:nth-of-type(2){
    background-position: right bottom;
    background-repeat: no-repeat;
}

article:nth-of-type(13) p:nth-of-type(2){
    background-position: 80% 40%;
    background-repeat: no-repeat;
}
/* 
###############
   Footer
###############
*/
footer{
    background-color: rgb(68,68,68);
    border: 1px solid black;
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    color: white;
    padding-bottom: 15px;
}

footer img{
    width: 7%;
}

.orange{
    color: rgb(221,87,53);
}

footer p {
    text-align: center;
}