html {
    background-color: lightyellow;
    line-height: 1.5;
}

body {
    font-family: 'PTSans', Arial, Helvetica, sans-serif;
    text-align: justify;
}


/*Custom fonts*/

@font-face {
    font-family: 'PTSans';
    src: url('fonts/PTS76F.ttf');
}


/*End custom fonts*/

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    background-color: rgb(243, 137, 137);
    box-sizing: border-box;
    margin-top: -10px;
}

header {
    padding-top: 20px;
    color: blue;
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    letter-spacing: 1px;
    font-style: italic;
    text-shadow: 2px 10px 5px #999999;
    background: url('../images.jfif') no-repeat;
    background-size: cover;
    background-position: right center;
}

header h1 {
    margin: 0;
}

.content-area {
    border-top: 3px solid lightblue;
    border-bottom: 3px solid lightblue;
    padding: 20px 40px;
}

.main-area {
    width: 66%;
    float: left;
    padding-right: 40px;
    box-sizing: border-box;
}

.sidebar {
    float: left;
    width: 34%;
    background-color: lightblue;
    padding: 20px 40px;
    box-sizing: border-box;
    background-image: linear-gradient(to top left, lightblue, rgb(243, 137, 137));
}

.main-area p {
    text-align: justify;
}

.sidebar p {
    text-align: justify;
}


/*UI menu

.ui-menu ul {
    margin: 0;
    padding: 0;
}

.ui-menu li {
    float: left;
    list-style: none;
    margin-right: 20px;
}

.ui-menu a {
    display: block;
    width: 50px;
    height: 50px;
    background-image: url(../sprites.png);
    text-indent: -9999px;
    background-repeat: no-repeat
}

.ui-profile a {
    background-position: 0 -50px;
}

.ui-settings a {
    background-position: 0 -100px;
}

.ui-home a:hover {
    background-position: -50px 0;
}

.ui-profile a:hover {
    background-position: -50px -50px;
}

.ui-settings a:hover {
    background-position: -50px -100px;
}


/*UI menu ends*/

footer {
    text-align: center;
    color: yellow;
    background-color: black;
    padding: 20px;
}

.fix {
    clear: both;
}

.group:before,
.group:after {
    content: "";
    display: table;
}

.group:after {
    clear: both;
}

.group {
    zoom: 1;
}


/*Site Navigation*/

.site-nav {
    margin-top: 20px;
}

.site-nav ul {
    margin: 0;
    padding: 0;
}

.site-nav li {
    list-style: none;
    float: left;
    margin-right: 5px;
}

.site-nav a {
    display: block;
    color: black;
    text-decoration: none;
    padding: 10px 20px;
    border: 3px solid lightblue;
    border-bottom: none;
    background-color: #fff;
    font-weight: bolder;
}

.site-nav1 a {
    width: fit-content;
    display: block;
    color: black;
    text-decoration: none;
    padding: 10px 20px;
    border: 3px solid lightblue;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-style: italic;
    font-weight: bolder;
    margin: 20px;
}

.site-nav a:hover {
    background-color: lightblue;
}

.site-nav1 a:hover {
    background-color: lightblue;
}


/*End site navigation*/

.image-banner {
    position: relative;
}

.image-banner img {
    display: block;
}

.banner-description {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    background-color: rgba(0, 0, 0, .5);
    padding: 15px 25px;
}

.banner-description1 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: black;
    background-color: rgba(243, 137, 137, 0.3);
    padding: 15px 25px;
    font-size: x-large;
}

.banner-description1 p {
    text-align: center;
}

.banner-description p {
    text-align: center;
}


/*loader*/

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 1;
    width: 120px;
    height: 120px;
    margin: -76px 0 0 -76px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


/* Add animation to "page content" */

.animate-bottom {
    position: relative;
    -webkit-animation-name: animatebottom;
    -webkit-animation-duration: 1s;
    animation-name: animatebottom;
    animation-duration: 1s
}

@-webkit-keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }
    to {
        bottom: 0px;
        opacity: 1
    }
}

@keyframes animatebottom {
    from {
        bottom: -100px;
        opacity: 0
    }
    to {
        bottom: 0;
        opacity: 1
    }
}

#myDiv {
    display: none;
    text-align: center;
}