*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    height: 100vh;
    font-family: Roboto;
    font-weight: 400;
    color: #0b0b0b;
    background-color: #fcfcfc;
    padding: 60px;
    font-size: 16px;
    line-height: 22px;
}

#wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    border-bottom: 2px solid #b5b5b5;
    padding-bottom: 40px;
}

.logo img {
    max-height: 56px;
}
.light {
    font-weight: 300;
}

.large { 
    font-size: 18px;
    line-height: 22px;
}

h1 {
    font-size: 38px;
    line-height: 42px;
    font-weight: 400;
    margin-bottom: 12px;
}

.max-280 {
    max-width: 280px;
}

.small {
    font-size: 14px;
    line-height: 18px;
}

address {
    font-style: normal;
}

a, a:link, a:visited {
    color: #0b0b0b;
    text-decoration: none;
}

a:hover, a:active {
    text-decoration: underline;
}

.get-in-touch {
    margin-top: 4px;
    margin-bottom: 20px;
}

@media (max-width: 600px) {

    body {
        padding: 40px 20px;
    }

    .get-in-touch {
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .logo img {
        max-height: 50px;
    }
    .flex {
        flex-direction: column;
    }

    h1 {
        font-size: 28px;
        line-height: 32px;
    }
 

    .max-280 {
        max-width: 220px;
    }
}