body {
    background-color: white;
    color: #000000;
    font-family: Arial, sans-serif;
    margin: 0 auto;
    padding: 0 30px 30px 30px;
    text-align: left;
    width: 1200px;
}

h1,
h2 {
    color: #000000;
    text-transform: capitalize;
    margin: 40px 0;
}

a {
    color: #888;
    text-decoration: underline;
    font-family: 'Open Sans', sans-serif;
}

a:hover {
    font-weight: bold;
}

p {
    font-size: 18px;
    line-height: 1.5rem;
    letter-spacing: 1px;
    text-transform: none;
    font-weight: normal;
}

footer {
    margin-top: 20px;
    font-size: 0.9em;
    color: #888;
    background-color:#fff;
    text-align: center !important;
    position:fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100%;
    visibility:visible;
}

/* Responsive styles for tablets and mobile */
@media (max-width: 1024px) { /* Tablets */
    footer {
        visibility:hidden;
    }
}

@media (max-width: 768px) { /* Mobile devices */
    footer {
       visibility:hidden;
    }
}


/* responsive css */
@media (max-width: 768px) {
    body{
        max-width:100%;
        padding: 10px;
        padding-top:0;
    }
}

@media (max-width: 600px) {
    body {
        max-width: 100%;
        padding:10px;
        padding-top: 0;
    }
}

.mobile-footer{
    visibility:hidden;
    text-align:center;
}

@media (max-width: 1024px) { /* Tablets */
   .mobile-footer {
       visibility:visible;
    }
}

@media (max-width: 768px) { /* Mobile devices */
    .mobile-footer {
        visibility:visible;
        margin-top:30px;
    }
}

