/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: black;
  color: white;
  font-family: times;
}

  
::-webkit-scrollbar {
 
width: 0px;
 
}
 
#credit {
 
position:fixed;
 
left:12px;
 
bottom:6px;
 
font-size:14px;
 
}
 
body {
 
background-color: #fff;
 
width: 700px;
 
position: relative;
 
margin-left: auto;
 
margin-right: auto;
 
font-family: arial;
 
background-image: url("BACKGROUND IMAGE");

}
 
.wrap {
 
width: 605px;
 
height: auto;
 
border: 4px outset #fff;
 
padding: 4px;
 
overflow: auto;
 
scrollbar-width: none;
 
background-image: url("CONTAINER BACKGROUND");
 
}
 
.box1 {
 
width: 415px;
 
height: 220px;
 
border: 4px inset #fff;
 
display: inline-block;
 
padding: 10px;
 
overflow: auto;
 
scrollbar-width: none;
 
background-color: #fff;
 
background-image: url("INNER BACKGROUND");
 
margin-bottom: 4px;
 
color: #000;
 
text-align: justify;
 
}
 
.box2 {
 
width: 129px;
 
height: 220px;
 
border: 4px inset #fff;
 
display: inline-block;
 
padding: 10px;
 
float: right;
 
overflow: auto;
 
scrollbar-width: none;
 
background-color: #fff;
 
background-image: url("INNER BACKGROUND2");
 
color: #000;
 
text-align: justify;
 
}
 
.box3 {
 
width: 576px;
 
height: 60px;
 
border: 4px inset #fff;
 
display: inline-block;
 
padding: 10px;
 
margin-top: 1px;
 
overflow: auto;
 
scrollbar-width: none;
 
background-color: #fff;
 
background-image: url("INNER BACKGROUND3");
 
}
 
img {
 
max-width: 100%;
 
height: auto;
 
}
 
ul {
 
margin-left: -15px;
 
margin-top: -1px;
 
list-style-image: url('LIST BUTTONS');
 
line-height: 30px;
 
}
 
a {
 
color: #000;
 
}
 
#hvr-forward {
 
display: inline-block;
 
-webkit-transform: perspective(1px) translateZ(0);
 
transform: perspective(1px) translateZ(0);
 
box-shadow: 0 0 1px rgba(0, 0, 0, 0);
 
-webkit-transition-duration: 0.3s;
 
transition-duration: 0.3s;
 
-webkit-transition-property: transform;
 
transition-property: transform;
 
}
 
#hvr-forward:hover, #hvr-forward:focus, #hvr-forward:active {
 
-webkit-transform: translateX(8px);
 
transform: translateX(8px);


 
}
