html, body {
    min-height: 100%;
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}

#container {
    display: flex;
    align-content: center;
    justify-content: center;
    max-width: 980px;
    flex-direction: column;
    margin: auto;
    padding: 25px;
}

#main {
    display: flex;
    align-content: center;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
}

#card {
    flex-grow: 1;
}
#card img {
    border-radius: 50%;
}

#info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

#main h1, #main h2, #main h3 {
    margin-bottom: 0;
    padding-bottom: 0;
    color: #333333;
}
.content h2 {
    text-align: center;
    margin-top: 40px;
}
.content h3 {
    margin-top: 30px;
}
h1, h2, h3 {
    color: #333333;
}

.social a, .social a:hover, .social a:visited, .social a:active {
    color: #333333;
    font-size: 24pt;
}

.content p {
    text-align: left;
}

.footer {
    text-align: center;
    font-size: 10pt;
}

.footer a, .footer a:hover, .footer a:visited, .footer a:active {
    color: #333333;
}

.gallery {
    display: flex;
    justify-content: space-between;
}
.gallery .col a {
    margin: 5px;
    display: block;
}
.gallery .col a img {
    width: 100%;
}

@media (max-width: 450px) {
    .gallery .col {
        width: 100%;
    }
    .gallery {
        flex-wrap: wrap;
    }
}