* {
    padding: 0;
    margin: 0;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 16px;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
    background-color: #fefefe;
    height: 100%;
    padding: 2em 1em;
}

@media screen and (min-width: 800px) {
    body {
        padding: 4em 3em;
    }
}

main p {
    margin: 1em 0;
    color: #222;
    font-weight: light;
}

main a {
    color: #222;
    font-weight: bold;
}

.main-title {
    width: 50%;
    line-height: .8em;
    position: relative;
    
    font-size: 4em;
    text-transform: lowercase;
    color: #333;
    text-align: left;
}

@media screen and (min-width: 800px) {
    .main-title {
        font-size: 8em;
    }
}

.main-title::before {
    content: "🏗️";
    position: absolute;
    bottom: 0;
    left: 5.5em;
}

footer {
    padding-top: 1em;
    margin-top: 3em;
    border-top: 1px solid #666;
}

footer p {
    color: #333;
    font-size: 0.9em;
    text-align: center;
}