body {
    background-color: #FBF8EF;
    background-image: url("bg.jpg");
}

    p {  font-family:"Arial", Arial, serif;
	 margin-top: .5em;
         text-align: justify;
	 text-indent: 1em;
         margin-bottom: .5em;
	 margin-left: .5em;
	 margin-right: .5em;
         }
    DT {  font-family:"Arial", Arial, serif;
         text-align: justify;
         }
a:link {color:#0000ff;text-decoration: none;}
a:visited {color:#29088A;text-decoration: none;}
a:hover {color:#ff0000;text-decoration: underline;}
a:active {color:#ff0000;text-decoration: none;}
.big {
    position: relative;
    opacity: 1;
    transform: scale(1, 1);
    transition: 0.3s ease;
    cursor: pointer;
}

.big:hover {
    transform: scale(1.1, 1.1);
    opacity: 1;
    z-index: 1;
}

.bag {
    border: 1px solid Black; 
    padding: -1px; 
    border-radius: 2px; 
    transition: 0.1s ease; 
    }

.bag:hover {
    position: relative; 
    top: 8px; 
    transform: scale(1.01, 1.01) rotate(-15deg); 
    opacity: 1; 
    z-index: 1; 
    }

.bag:active {
    position: relative; 
    top: 100px; 
    transform: scale(2, 2) rotate(-15deg); 
    opacity: 1; 
    z-index: 1; 
    } 