@charset "utf-8";
/* CSS Document */
body{
    animation: fadeInAnimation ease 1.3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    background-color: bisque;
    color:#0B1108;
    background-image: url("../images/lakeView.jpg");
	background-size:cover;
	background-repeat: no-repeat;
	
	
}
 @keyframes fadeInAnimation {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 1; 
            }
}
h1{
	font-weight: 100;
}
h5 {
	font-size: 1em;
	color: black;
}
h4 {
	font-size: .5em;
	color: #0A6A2D;
}
a {
    text-decoration: none;
    color: #413D3D;
}
a:hover {
    text-decoration: none;
    color: #348FDC;
}
.innerSpace{
	padding:10px;
	background-color:#8595A4;
	opacity: 75%;
	color:black;
	animation-name: goingDown;
	animation-delay: .5s;
	position: relative;
	animation-iteration-count: 1;
	animation-duration: 1.5s;
	animation-fill-mode: forwards;
	
	
}
@keyframes goingDown{
	 from {top: 0px;}
  to {top: 110px; background-color: antiquewhite;}
	
}
.propertyBox{
    text-align: center;
    background-color: antiquewhite;
    border: medium solid #322F2F;
}
