/* ----- VIDEO HERO/TITLE ----- */
.landing-hero h1 {
    position: absolute;
	top: 30%;
    left: 0;
	right: 0;
    line-height: 4rem;
    font-size: 5rem;
}

.landing-hero h1::after {
    display: block;
    text-align: center;
    content: "香港";
    font-size: 4rem;
    font-family: 'Ma Shan Zheng', serif;
    padding-top: 0.5rem;
    text-shadow: 0px 0px 4px red;
}

.landing-hero video {
    width: 100%;
    height: 85vh;
    object-fit: cover; 
}

.landing-hero a {
	position: absolute;
    color: #fff;
    font-size: 2rem;
	bottom: 1rem;
	left: 0;
	right: 0;
    text-align: center;
    text-shadow: 0px 0px 10px #fff;
}


/* ----- QUOTE ----- */
.about {
    font-size: 1.2rem;
    padding: 2rem 0 2rem 0;
    background-color: #252525;
}


/* ----- CONTACT FORM ----- */
.contact {
    width: 20rem;
    margin: 0 auto;
}

fieldset {
	margin-top: 3rem;
	border: none;
	display: flex;
	flex-direction: column;
    padding: .5rem 3rem 3rem;
}

legend {
    text-align: center;
    text-shadow: 2px 2px 3px red;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    font-size: 2rem;
}

label {
	display: block;
	padding: 1rem 0 .2rem 0;
	font-weight: 700;
}

input,
select,
textarea {
    background-color: #252525;
    color: #ddd;
}

input[type="submit"] {
	margin-top: 2rem;
	font-weight: 700;
    padding: .5rem;
    background-color: maroon;
    color: #ddd;
    font-size: 1.5rem;
    letter-spacing: 1px;
}


@media (min-width: 68em) {

    .landing-hero video {
        height: 90vh;
    }

    .landing-hero h1 {
        top: 35%;
        font-size: 8rem;
    }

    .landing-hero h1::after {
        font-size: 6rem;
        position: relative;
        top: 2.5rem;
    }

    .landing-hero a {
        font-size: 3rem;
    }

    .landing-hero a:hover {
        opacity: 70%;
        transition: .7s;
    }

    .home-grid {
        padding: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 25rem));
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }

    .about {
        margin: 0;
        grid-column: 1 / 2;
    }

    .contact {
        margin: 0;
        grid-column: 2 / 3;
        box-shadow: none;
        width: 25rem;
    }

}