body{
background-image:url(baby.jpg);
background-repeat:repeat;
background-color:#f1789c;
font-family:"lucida sans unicode";
font-size:15px;
line-height:20px;
text-align:justify;
}

#container{
width:775px;
margin:0 auto;
background-image:url(http://cbimg6.com/layouts/10/07/36366ac.png);
background-repeat:repeat;
overflow:auto;
position:relative;
}

.header{
text-align:center;
padding-top:20px;
}

.header img{
display:block;
margin:0 auto;
max-width:100%;
height:auto;
}

.navigation{
width:690px;
padding:5px;
margin-left:40px;
margin-top:40px;
margin-bottom:20px;
text-align:center;
}

.title{
font-family:"century gothic";
font-size:23px;
font-weight:bold;
color:#f1789c;
display:block;
text-align:left;
margin-left:140px;
margin-top:5px;}

.sidebar{
float:left;
margin-left:40px;
width:200px;
box-sizing:border-box;
text-align:left;
padding-right:20px;
border-right:2px dotted #f1789c;
}

.main{
float:right; 
margin-right:50px; 
_margin-right:30px; 
width:460px; }


.footer{
clear: both;
margin: 40px auto;
padding: 15px;
width: 690px;
text-align: center;
font-family: "century gothic";
font-size: 14px;
color: #82a5cb;
border-top: 2px dotted #f1789c;
}

.footer img{
margin: 5px;
}

.footer a{
color: #f1789c;
font-weight: bold;
}

.footer a:hover{
color: #82a5cb;
}

.footer img{
margin:5px;
}

.footer a{
color:#f1789c;
font-weight:bold;
}

.footer a:hover{
color:#82a5cb;
}

a.nav, a.nav:active, a.nav:visited, a.nav:link{
color:#82a5cb;
text-decoration:none;
font-family:"century gothic";
font-weight:bold;
font-size:20px;
padding-right:70px;
}

a.nav:hover{
color:#f1769b;
text-decoration:none;
font-family:"century gothic";
font-weight:bold;
font-size:17px;
padding-right:70px;
}

a.nav2, a.nav2:active, a.nav2:visited, a.nav2:link{
color:#82a5cb;
text-decoration:none;
font-family:"century gothic";
font-weight:bold;
font-size:20px;
}

a.nav2:hover{
color:#f1769b;
text-decoration:none;
font-family:"century gothic";
font-weight:bold;
font-size:17px;
}

a, a:active, a:visited, a:link{
color:#f1789c;
text-decoration:none;
}

a:hover{
color:#82a5cb;
text-decoration:none;
}

b, strong{
color:#f1789c;
text-decoration:none;
font-family:"century gothic";
font-size:15px;
}

i, em{
color:#f1789c;
}

u{
border-bottom:1px dotted #f1789c;
text-decoration:none;
}


h1{
font-family:"century gothic";
font-size:22px;
text-align:left;
letter-spacing:0px;
color:#f1789c;
border-bottom:2px dotted #f1789c;
padding-top:10px;
margin-bottom:5px;
padding-bottom:4px;
}

 body {
    color: #82a5cb; 
  }
  
  .marquee-container {
    overflow: hidden; /* Hides the text outside the container */
    white-space: nowrap; /* Keeps the text on a single line */
    box-sizing: border-box;
    width: 100%;
}

.marquee-text {
    display: inline-block;
    padding-left: 100%; /* Start the text off-screen to the right */
    animation: marquee 15s linear infinite; /* Adjust duration and timing as needed */
}

@keyframes marquee {
    0% {
        transform: translate(0, 0); /* Start position */
    }
    100% {
        transform: translate(-100%, 0); /* End position: move left by 100% of text width */
    }
}