
/* Style */

body {
    background-color: #333;
    font-family: ui-rounded, system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue",
    "Lucida Grande", "Segoe UI", sans-serif;
    color: #fff;

    margin: 0;
    padding: 0;
}

h1 {
    font-size: 30px;
}

a {
    color: #FFBE32;
    text-decoration: none;
}

p {
    line-height: 1.5em;
}


/* Container */

.container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.container-content {
    /* max-width: 800px; */
    margin: 0 auto;
    padding: 0 10px;
}

.background-container {
    padding: 20px;
    background: rgba(0,0,0,0.2);
    border-radius: 10px;
}


/* About */

.container-about {
    max-width: 600px;
    margin: 50px auto 50px auto;
    text-align: left;
}

.container-about-title {
    display: flex;
    align-items: center;
}

.container-about img {
    width: 90px;
    margin: 0 20px 0 0;
    border-radius: 50px;
}

.container-about p {
    text-align: justify;
    margin-bottom: 0;
}


/* Links */

.container-links {
    display: table;
    list-style: none;
    border-spacing: 20px;
    align-items: center;

    width: 100%;
    margin: 0px;
    padding: 0px;
}

.container-links li {
    display: table-cell;
}

.container-links img {
    width: 50px;
    filter: invert(100%) sepia(0%) saturate(1%) hue-rotate(20deg) brightness(105%) contrast(102%);
}


/* Projects */

.project-header {
    margin: 100px 0 30px 0;
}

.list-projects {
    display: table;
    margin: 0px;
    padding: 0px;
    width: 100%;
    border-spacing: 10px;
    list-style: none;
}

.list-projects li {
    display: table-cell;
    width: 400px;
    margin: 0px;
    padding: 0px;

    border-radius: 10px;
    overflow: hidden;
}

.list-projects li:hover {
    box-shadow: 0px 0px 50px rgba(0, 0, 0, .5);
}

.list-projects img {
    display: block;
    width: 100%;
    margin: 0px;
    padding: 0px;
}


/* Footer */

.container-footer {
    width: 100%;
    padding: 0;
    margin: 150px 0 0 0;
    border-radius: 10px 10px 0 0;
}

.list-footer {
    display: table;
    margin: 0px;
    padding: 0;
    width: 100%;
    border-spacing: 20px;
    list-style: none;
}

.list-footer li {
    display: table-cell;
    text-align: center;
    line-height: 1.8em;
}

.list-footer span {
    color: white;
}