html {
    height: 100%;
}

body {
    background-color: #000;
    font-family: "Kanit", sans-serif;
    font-size: 16px;
    height: 100%;
    color: #f7931d;
    position: relative;   
}

@media screen and (min-width: 992px) {
    body::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: 0;
        background-image: url('/images/logo.svg');
        background-repeat: no-repeat;
        background-size: 400px;
        background-position: bottom -50px right -100px;
        width: 25rem;
        height: 25rem;
        opacity: .2;
    }
}

#logo {
    width: 10rem;
    max-width: 600px;
}

@media screen and (max-width: 992px) {
    h1 {
        font-size: 2rem;
    }

    #logo {
        width: 7rem;
    }
}

.contact a {
    text-decoration: none;
    transition: 0.3s;
    color: white;
}

.contact i.fa {
    margin-right: 10px;
    margin-bottom: 20px;
    color: white;
    font-size: 16px;
    padding: 7px;
    transition: 0.9s;
    background-color: #f7931d;
    border-radius: 100%;
}

.contact a:hover {
    color: #f7931d;
}

.contact a:hover .fa{
    transform: rotateY(180deg);
}