/*Mobile and desktop switch*/
@media screen and (max-width: 1200px) {
    /*Navigation Switch*/
    #desktop-nav {
        display: none;
    }
    #mobile-nav {
        display: flex;
    }
    /*Home Page Switch*/
    .desktop-home {
        display: none;
    }
    .mobile-home {
        display: flex;
    }
    /*About Page Switch*/
    .desktop-about {
        display: none;
    }
    .mobile-about {
        display: flex;
    }
    /*King Page Switch*/
    .desktop-king {
        display: none;
    }
    .mobile-king {
        display: flex;
    }
    /*Contact Page Switch*/
    .contact-input {
        width: 275px;
    }
    .contact-forms {
        height: 60vh;
    }
    .contact-forms h2 {
        font-size: 2rem;
    }
}