html {
  font-size: 14px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.top-header {
    background-color: #e6691c;
    padding: 10px 0;
}

    .top-header .logo {
        font-size: 18px;
    }

.header-icons a {
    color: white;
    transition: color 0.2s ease-in-out;
}

    .header-icons a:hover {
        color: #ffe;
    }


footer {
    background-color: #e6691c;
    color: white;
    text-align: center;
    padding: 15px 10px;
    font-size: 14px;
}

    footer a {
        color: white !important;
        text-decoration: none;
        margin: 0 8px;
    }

        footer a:hover {
            text-decoration: underline;
        }


.heading {
    font-size: 2.6rem;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    padding-top: 60px;
    padding-left:13px;
    padding-right:13px;
}

@keyframes logoslideleft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes logoslideright {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100%);
    }
}


@media (max-width: 480px) {


    h2 {
        font-size: 26px !important;
    }
}


