@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #262626;
    color: #f7f7f7;
    font-family: 'Albert Sans', sans-serif;
}

header {
    background-color: #474747;
    border-top: 10px solid #0d5997;
}

header h1, header a {
    font-size: 30px;
    color: #f7f7f7;
    text-decoration: none;
}

header div#icons img {
    width: 35px;
    border-radius: 5px;
    margin: 2px;
    border-bottom: 3px solid #0d5997;
}

header div#icons img:hover {
    filter: saturate(70%);
    border-bottom: 3px solid 205581;
}

main {
    width: 100%;
}

section#top div.card p {
    margin: 10px 0;
    line-height: 1.5em;
    font-size: 0.95em;
}

section#top p {
    margin-bottom: 20px;
}

section#lang {
    background-color: #FFB30D;
    width: 100%;
    text-align: center;
    padding: 50px 20px;
    border-bottom: 5px solid #ffc039;
    box-shadow: 0px 0px 8px 3px rgb(26, 26, 26);
    z-index: 100;
}

section#projects {
    padding: 70px 15px;
}

section#projects h1 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8em;
}

div#gallery {
    margin: 0 auto;
    text-align: center
}

section#projects div.card {
    display: inline-block;
    width: 250px;
    background-color: #474747;
    overflow: hidden;
    margin: 10px;
    text-align: left;
    border-radius: 5px;
    border-bottom: 2px solid #474747;
    box-shadow: 0px 2px 10px black;
}

section#projects div.card:hover {
    background-color: #303030;
}

section#projects div.card p {
    padding: 15px 15px 3px 15px;
    font-size: 1.1em;
    font-weight: 600;
}

section#projects div.card p.tags {
    padding: 3px 15px 10px 15px;
    font-size: 0.8em;
    font-weight: 400;
    color: #ffc039;
}

section#projects div.card p.linkGithub {
    font-size: 0.7em;
    font-weight: 300;
    padding: 0 15px 20px 15px;
}

section#projects div.card p.linkGithub img {
    width: 18px;
    vertical-align: bottom;
    margin-right: 5px;
    border-radius: 3px;
}

section#projects div.card a {
    color: #f7f7f7;
    text-decoration: none;
}

section#projects div.card img {
    width: 250px;
}

section#projects div.card img:hover {
    mix-blend-mode: hard-light;
}

section#projects #port p {
    text-align: center;
    margin-top: 70px;
    font-size: 0.9em;
    text-transform: uppercase;
    font-weight: 600;
    background-color: #474747;
    padding: 20px;
    border-bottom: #303030 2px solid;
    border-radius: 5px;
    max-width: 400px;
    margin: 70px auto 0 auto;
}

section#projects #port p:hover {
    background-color: #303030;
    box-shadow: 0px 0px 4px black;
}

section#projects #port a {
    color: #f7f7f7;
    text-decoration: none;
}



footer {
    background-color: #0d5997;
    margin-top: 30px;
    border-top: 8px solid #474747;
    padding: 30px 20px;
}

footer p {
    text-align: center;
    font-size: 0.8em;
    padding-bottom: 10px;
}

footer img {
    width: 50px;
    border-radius: 5px;
    margin: 2px;
}

footer img:hover {
    filter: drop-shadow(0 0 3px #051941);
}