@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');

#main {
    background-color: #101010;

    display: flex;
    justify-content: center;
}

#content {
    padding: 12px;
    background-color: #202020;

    max-width: 800px;
}

#intro {
    display: flex;
}

#intro #icon_and_contact {
    display: flex;
    align-items: center;
    flex-direction: column;

    margin-right: 16px;
}

#intro #icon {
    border-radius: 50%;
    border: 3px solid #505050;

    /* TODO: surely there is a better way! */
    min-width: 195px;
    max-width: 195px;
    min-height: 195px;
    max-height: 195px;
}

#intro #contact {
    margin-top: 12px;
}

#intro #contact a {
    text-decoration: none;
}

#intro #bio {
    margin: 0;
    font-size: 18px;
}

#intro #bio p {
    margin: 2px;
}

#showcase {
    display: flex;
    flex-direction: column;
}

#showcase #projects {
    display: flex;
    flex-direction: column;
    margin: 10px;
}

#showcase #projects .group {
    display: flex;
    flex-direction: column;
}

.divider {
    width: 100%; 
    text-align: center;
    border-bottom: 1px solid #333; 
    line-height: 0.1em;
    margin-top: 10px;
    margin-bottom: 20px; 
 }
 
.divider span { 
    color: #aaa;
    background: #202020; 
    padding: 0 10px; 
 }

#showcase .project {
    display: flex;
    margin-bottom: 20px;
}

#showcase .project .desc h3 {
    font-size: 22px;
    margin: 0px;
}

#showcase .project .desc p {
    margin-top: 8px;
}

img.sharp {
    image-rendering: crisp-edges;
    image-rendering: pixelated;
}

#showcase .project img {
    align-self: left;

    min-width: 180px;
    max-width: 180px;
    min-height: 180px;
    max-height: 180px;
    margin-right: 10px;
    
    border-radius: 10px;

    filter: brightness(100%);
}

#showcase .project img:hover {
    filter: brightness(120%);
    transition: all 0.1s linear;
}

.feather {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

* {
    color: #eee;
    letter-spacing: .03em;
    font-family: 'Roboto', sans-serif;
    max-width: 100vw;
}
