body {
	background-color: rgb(193, 215, 47);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 2s ease-in-out forwards;
}

.logo a {
    display: block;
    width: 100%;
    max-width: 900px;
    height: 200px;
    margin: auto;
    text-indent: -9000px;
    background: url(../img/psr-logo.png) no-repeat;
    background-position-x: center;
    margin: 10% auto;
    opacity: 0; /* Start hidden for the fade-in effect */
}

.container {
	text-align:center;
	font-family: Arial, sans-serif; /* Specify Arial as the preferred font with fallback to sans-serif */
    color: #fff; /* Set text color to white */
}

.privacy-container {
	text-align:left;
	font-family: Arial, sans-serif; /* Specify Arial as the preferred font with fallback to sans-serif */
	line-height: 1.4em;
    color: #666; /* Set text color to white */
}


a {
	color: #fff;
}

.privacy-container a {
	color: #000;
}