* {
    font-family: sans-serif;
}

html, body {
    height: 100%;
    width: 100%;

    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    max-height: 100%;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;

    background-color: #2f3136;
}

main {
    min-height: 300px;

    width: 70%;
    min-width: 380px;
    max-width: 650px;

    padding-top: 30px;

    background-color: #eaeaea;

    text-align: center;
    color: #2f3136;
}

.about-me {
    width: 85%;
    max-width: 500px;

    margin: auto;

    text-align: left;
}

.short-description {
    font-size: 17px;
}

table {
    width: 100%;
}

td {
    padding-top: 15px;
}

td.dates {
    width: 180px;

    text-align: center;
}

.email {
    text-align: center;
    font-size: 18px;
}

.social-buttons {
    margin: 0 0 30px 0;
}

.social-button {
    display: inline-block;
    width: 45px;
    height: 45px;

    border-radius: 2px;
    opacity: 0.8;

    margin: 0 10px;
}

.social-button:hover {
    opacity: 1;
}


