@import url('https://fonts.googleapis.com/css2?family=Long+Cang&display=swap');

body{
    font-family:Georgia, 'Times New Roman', Times, serif;
    background-image: url("../Unit2/images/fresh_snow_@2X.png");
    background-color:#c5c4c2;
}

.container{
    width: 1000px;
    margin: auto;
    background-color: rgb(225, 232, 250);  
}

/*Attribute Selectors*/

a[href]{    /*Nav Bar*/
    color: blue;
    font-weight: bold;
    text-decoration: none;
}

main img[alt~=big]{  /*Dog Pictures*/
    border: 2px solid blue;
    padding: 5px;
    background-color: rgb(36,156,222);
    box-shadow: 10px 10px 5px rgba(0,0,0,0.2);
}

main img[alt~=small]{  /*Dog Pictures*/
    border: 2px solid black;
    padding: 5px;
    background-color: blue;
    box-shadow: 10px 10px 5px rgba(0,0,0,0.2);
}

[class|="title-name"]{  /*Dog Names*/
    color: rgb(36,156,222);
    text-decoration: underline
}

[id^="text quote"]{  /*Quote*/
    color: blue;
    padding: 10px 70px;
}

img[alt$="banner"]{  /*Banner image*/
    border: 1px solid black;
    border-radius: 5px;
}

[class*="fo"]{  /*footer*/
    text-align: center;
    background-color: rgb(36,156,222);
    border-radius: 5px;
}




/*Nav/Header*/
header nav{
    margin-top: 15px;
    margin-left: 15px;
    margin-right: 15px;
    border-bottom: 5px solid rgb(36,156,222);
    padding-bottom: 10px;
}

header nav a{
    display: inline-block;
    margin-right: 20px;
}

header nav a:last-child{
    margin-right: 0;
}
main{
    font-size: 18px;
    margin: 15px

}
main p{
    margin-bottom: 30px;

}


h1 {
    font-weight: 400;
    font-family: 'Long Cang', Courier, monospace;
    font-size: 40px;
    text-align: left;
    text-transform: capitalize;
}
 
.footer{
    padding: 5px 5px 5px 10px
}    



img.right{
    float: right;
    margin: 10px 10px 10px 20px;
}
    
img.left{
    float: left;
    margin: 10px 20px 10px 10px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
  }



    
#img_size{
    height: 300;
    width: auto;
}
