@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    color: #444;
    font-size: 62.5%; /* -> 1em = 10px */
    line-height: 100%;
}

h1 {
    font-size: 4em;
    font-weight: normal;
    margin: 0 0 26px 0;
    line-height: 120%;
}

p {
    font-size: 2em;
    line-height: 130%;
    font-weight: 600;
}

a, a:visited {
    color: #C05F31;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    color: #000000;
    text-decoration: underline;
}

.content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    text-align: center;
}

.contact {
    margin-top: 24px;
}

.logo-image {
    width: 50%;
    height: auto;
}

.intro-image {
    width: 100%;
    height: auto;
}

@media screen and (min-width: 992px) {
    .logo-image {
        width: 15%;
    }

    .intro-image {
        width: 50%;
    }
}