body {
    background-color: black;
    text-align: center;
    margin-left: 300px;
    margin-right: 300px;
    font-family: 'Ysabeau Office', sans-serif;
}

.logo {
    margin-top: 12px;
}

.logo img {
    border-radius: 50%;
    width: 70px;
}

.logo-title {
    display: inline-block;
    margin-top: 5px;
    color: black;
    text-transform: uppercase;
    font-size: 14px;
    width: 180px;
    border: solid 2px orange;
    box-shadow: 0px 0px 10px orangered;
    border-radius: 20px;
    padding-top: 2px;
    padding-bottom: 2px;
}

.logo-description {
    font-size: 20px;
    color: black;
    text-transform: uppercase;
    margin-top: -5px;
    font-family: 'Kanit', sans-serif;
}

.hero img {
    width: 445px;
    margin-top: 25px;
    box-shadow: 0px 0px 10px rgb(164, 0, 0);
}

.leads {
    text-transform: uppercase;
    margin-top: 13px;
    display: inline-block;
    background-color: rgb(255, 175, 27);
    border-radius: 10px;
    box-shadow: 0px 0px 20px red;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 16px;
}

.leads a {
    text-decoration: none;
    color: maroon;
}

.leads a:active {
    color: maroon;
}

#container {
    display: flex;
}

#heroImg {
    width: 50%;
}

footer p {
    color: rgb(0, 98, 255);
    font-family: 'Kanit', sans-serif;
    text-transform: uppercase;
}

.site-description {
    margin-bottom: -10px;
    margin-top: 10px;
    font-size: 15px;
    color: darkblue;
}

.copyright {
    color: darkblue;
    margin-top: -10px;
    font-size: 15px;
}

.contact {
    text-decoration: none;
    font-size: 13px;
}

.contactus {
    margin-top: 10px;
    margin-bottom: 0px;
}

.privacypolicy {
    margin-top: 0px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 990px) {
    body {
      margin-left: 100px;
      margin-right: 100px;
    }
}

@media only screen and (max-width: 640px) {
    body {
      margin-left: 20px;
      margin-right: 20px;
    }
}

@media only screen and (max-width: 500px) {
    body {
      margin-left: 10px;
      margin-right: 10px;
      margin-top: 20px;
    }

    .logo-description {
        font-size: 15px;
    }

    .hero img {
        margin-top: 40px;
        width: 360px;
    }
}