@import url('https://fonts.googleapis.com/css?family=Raleway');

:root {
    --main-color: white;
    --secondary-color: dimgray;
    --third-color: #F3EFE0;
    --fourth-color: #22A39F;
}

body {
    background-color: var(--main-color);
}

html, h1, h2, h3, h4, h5, h6, a {
    font-family: "Raleway";
}

.navbar-collapse {
    justify-content: flex-end;
    margin-right: 5em;
}

.navbar {
    background-image: linear-gradient(to right, #232526, #414345, #414345, #232526)
}

.nav-link, .navbar-brand {
    color: var(--main-color);
    cursor: pointer;
}

.navbar-brand {
    margin-right: 50%;
}

.header {
    background-image: url('../images/code.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.header h1 {
    color: var(--third-color);
    padding-bottom: 1em;
}

.description {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    padding-bottom: 10%;
    background-color: rgba(0, 0, 0, 0.6)
}

.description h2 {
    font-size: 3vw;
    text-align: center;
    color: var(--third-color);
    font-family: "Raleway";
    z-index: 1;
}

.description h1 {
    font-size: 5vw;
    font-family: "Raleway";
    padding-bottom: 0;
    z-index: 1;
}

h1 {
    color: var(--secondary-color);
    padding-top: 2em;
    padding-bottom: 1em;
}

.about-me {
    margin-top: 0;
    padding: 1em;
    position: relative;
}

.about-me img {
    height: 100%;
    width: 100%;
    border-radius: 50%;
}

.about-me .logos img {
    border-radius: 0%;

    filter: url(filters.svg#grayscale);
    /* Firefox 3.5+ */
    filter: gray;
    /* IE6-9 */
    -webkit-filter: grayscale(1);
    /* Google Chrome & Safari 6+ */
}

.about-me .logos img:hover {
    filter: none;
    -webkit-filter: none;
}

.about-me div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-me p {
    text-align: center;
}

.about-me p:first-of-type {
    font-weight: bold;
    font-size: 20px;
}

.about-me p:last-of-type {
    font-weight: bold;
    font-size: 20px;
    margin-top: 5em;
}

.about-me .logos {
    flex-direction: row;
}

.about-me .desc {
    padding: 2em;
}

.about-me .desc p {
    line-height: 2;
    color: var(--secondary-color);
}

.about-me .desc p:nth-child(3) {
    color: var(--fourth-color);
}

.about-me h1 {
    color: var( --fourth-color);
    padding-top: 2em;
    padding-bottom: 1em;
}

/*Portfolio*/
.resume {
    margin: 4em 0;
    /*position: relative;*/
    background-color: var(--third-color);
    padding-bottom: 5em;
}

.resume h1 {
    color: var(--fourth-color);
    padding-top: 2em;
    padding-bottom: 1em;
}

.resume table {
    border-top: 1px solid var(--fourth-color);
}

.resume h4 {
    color: var(--fourth-color);
}

.resume .row {
    justify-content: center;
}

@media (max-width: 1000px) {
    .resume .row {
        justify-content: center;
        flex-direction: column;
    }
}

.resume td {
    color: black;
    padding: 1.15em 0.45em 0.15em 0em;
}

@media (min-width: 1000px) {
    .resume td {
        padding: 1em 2em 0 0;
    }
}

.resume tr td:first-of-type {
    text-align: center;
    vertical-align: text-top;
    font-family: "Raleway";
    font-weight: bold;
    /*font-size: 18px;*/
    color: black;
}

.resume tbody {
    margin-top: 1rem;
}

.resume tr td p {
    text-align: justify;
    font-family: "Raleway";
}

.resume tr td h5 {
    text-align: left;
    color: var(--secondary-color);
    font-family: "Raleway";
    font-weight: bold;
    color: black;
    font-size: 16px;
    min-width: 150px;
}

.resume tr td a {
    color: var(--secondary-color);
    font-family: "Raleway";
    font-size: 16px;
    text-decoration: underline;
}

.contact {
    margin: 6em 0;
    position: relative;
    padding-bottom: 10em;
    height: 100vh;
}

.contact form div {
    align-items: center;
    justify-content: center;
}

.contact .right .btn-secondary {
    background: var(--fourth-color);
    color: var(--main-color);
    border: none;
}

.contact .right .form-control::placeholder {
    color: var(--secondary-color);
    font-size: 16px;
}

.contact h1 {
    color: var(--fourth-color);
}