body {
    font-family: "Ubuntu", sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #222;
    background-color: rgb(252, 252, 252);
    width: 100%;
    height: calc(100vh - 60px);
    margin: 0;
}

#nav {
    width: 100%;
    background-color: #222;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;;
}

#nav a {
    padding: 20px;
    color: white;
    font-weight: 400;
    text-decoration: none;
    letter-spacing: 1px;
}

#nav a.contact:hover {
    text-decoration: underline;
}

#nav a.home {
    font-family: "Press Start 2P", serif;
    font-weight: 400;
    font-style: normal;
}

.content {
    height: calc(100vh - 60px);
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.text {
    max-width: 80%;
    
}

.heading {
    background-color: rgb(252, 252, 252);
    display: inline-block;
    margin-top: -2px;
}

.heading h1 {
    font-family: "Zilla Slab Highlight", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 46px;
    color: #222;
    /*padding: 0 0 2px 0;*/
    margin: -2px 0 0 0;
    
}

.subheading {
    margin-bottom: 60px;
    font-size: 24px;
}

.get-in-touch p a {
    padding-left: 10px;
}

@media (max-width: 420px) {
    #nav {
        justify-content: center;
    }
    
    #nav a.contact {
        display: none;
    }

    .heading h1 {
        font-size: 32px;        
    }
    
    .subheading {
        margin-bottom: 32px;
        font-size: 20px;
    }

    .get-in-touch p {
        font-size: 14px;
    }
    
    .get-in-touch p a {
        display: block;
        padding-left: 0;
    }
}
  