html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    display: flex;
    color: #000000;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    background-color: #fff;
    position: relative;
    font-family: 'Roboto';
}
main {
    width: 100%;
    height: auto;
    min-height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 24px 16px;
    box-sizing: border-box;
}
img {
    width: 200px;
    max-width: 100%;
    height: auto;
    margin: 0 0 25px 0;
}
h1 {
    text-align: center;
    font-size: 4em;
    margin: 0 0 5px 0;
}
h2 {
    margin: 0;
    font-size: 1.5em;
    font-weight: 600;
    text-align: center;
    font-weight: normal;
}
#projects {
    width: 100%;
    max-width: 600px;
    margin: 50px auto 0 auto;
    box-sizing: border-box;
}
#projects h3 {
    font-size: 1em;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}
#klimbuddies {
    display: flex;
    padding: 20px;
    border-radius: 5px;
    flex-direction: row;
    background-color: white;
    box-sizing: border-box;
    color: black;
    text-decoration: none;
    align-items: center;
}
#klimbuddies__thumbnail {
    height: 150px;
    flex: 0 0 150px;
    margin: 0 20px 0 0;
    border-radius: 3px;
    background-size: cover;
    background-color: #f5f5f5;
    background-position: center center;
    background-image: url("./../images/projects/klimbuddies/1.jpg");
}
#klimbuddies__content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
#klimbuddies__title {
    display: block;
    font-size: 1.3em;
    margin: 0 0 7px 0;
}
#klimbuddies__text {
    display: block;
    line-height: 1.25em;
}
#contact {
    text-align: center;
    margin: 25px auto 0 auto;
}
#contact a {
    color: #000;
    text-decoration: none;
    overflow-wrap: break-word;
}
#contact a:hover {
    text-decoration: underline;
}
#message {
    border-radius: 5px;
    padding: 25px;
    color: #000;
    background-color: #f5f5f5;
    border: 1px solid #e5e5e5;
    width: 100%;
    max-width: 600px;
    margin-top: 20px;
    box-sizing: border-box;
}
#message h3 {
    margin: 0 0 15px 0;
    text-align: center;
}
#message p {
    margin: 0 0 15px 0;
}
#message p:last-child {
    margin: 0;
}
#klimbuddies-logo {
    width: 50px;
    margin: 0 auto 15px auto;
}

@media (max-width: 480px) {
    img {
        width: 150px;
    }
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 1.25em;
    }
    #message {
        padding: 20px;
    }
    #message p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    #klimbuddies {
        flex-direction: column;
        text-align: center;
    }
    #klimbuddies__thumbnail {
        margin: 0 0 15px 0;
    }
    #projects {
        margin-top: 30px;
    }
}