body {
    background-color: #ffffec;
    background-image: url("bg.jpg");
}

.button {
    display: inline-block;
    text-align: center;
    vertical-align: middle;
    padding: 1px 6px;
    border: 2px solid #EDEDED;
    border-radius: 5px;
    background: #3c9fe9;
    background: -webkit-gradient(linear, left top, left bottom, from(#3c9fe9), to(#25628f));
    background: -moz-linear-gradient(top, #3c9fe9, #25628f);
    background: linear-gradient(to bottom, #3c9fe9, #25628f);
    font: normal normal bold 13px arial;
    color: #ffffff;
    text-decoration: none;
}
.button:hover,
.button:focus {
    border: 2px solid #EDEDED;
    background: #48bfff;
    background: -webkit-gradient(linear, left top, left bottom, from(#48bfff), to(#2c76ac));
    background: -moz-linear-gradient(top, #48bfff, #2c76ac);
    background: linear-gradient(to bottom, #48bfff, #2c76ac);
    text-shadow: #ffffff 1px 1px 1px;
    color: #000000;
    text-decoration: none;
}
.button:active {
    background: #25628f;
    background: -webkit-gradient(linear, left top, left bottom, from(#25628f), to(#25628f));
    background: -moz-linear-gradient(top, #25628f, #25628f);
    background: linear-gradient(to bottom, #25628f, #25628f);
}

p {
    font-family: "Times New Roman", Times, serif;
text-align: justify; font-size: 16px;
}

h1 {
    font-size: 30px; color:#B43104;
}

h2 {
    font-size: 22px; color:#0404B4;
}

h3 {
    font-size: 50px; color:#0404B4;
}

a {
    opacity: 1.0;
    filter: alpha(opacity=100);
}

a.gallery {
    display: inline-block;
    border: 1px solid #0B610B;
    border-radius: 4px;
    padding: 5px;
    transition: 0.3s;
    opacity: 1;
    filter: alpha(opacity=100);
}

a.gallery:hover {
    box-shadow: 0 0 2px 3px rgba(256, 0, 0, 1);
    opacity: 0.5;
    filter: alpha(opacity=50);
}

IMG.frame {
    border: 1px solid #000;
    border-radius: 20px;
    padding: 3px;
    animation:animatezoom 0.9s} 
    @keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)} 
}