

body {
    background-image: url('imgs/contact-us-backgound.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    .navbar {
        align-self: self-end;
        margin-top: 2em;
        margin-right: 3em;
    }

    .contact-us {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4em;
        margin-top: 6em;

        :last-child {
            margin-bottom: 8em;
        }
        
        h1 {
            color: #0C4E69;
            font-size: 3em;
        }

        p {
            color: #0C4E69;
            font-size: 2em;
        }
    }
}



@media (width <= 650px) {
    .contact-us {
        font-size: 14px;
    }
}

