body {
    /* font-family: 'Nunito', sans-serif; */
    font-family: 'Silkscreen', sans-serif;
    font-size: 16px;
    background-color: #283030;
    color: #dedede;
    min-height: 100vh;
    line-height: 1.5;
    width: 100%;
    margin: 0 auto;
    max-width: 1080px;
    display: grid;
    grid:
    "h h"
    "m m"
    "f f";
}

h1, h2, h3, h4, h5, h6 {
    /* font-family: 'Silkscreen', sans-serif; */
    font-weight: 300;
    color:rgb(0, 209, 174);
}

h3 {
    text-decoration: underline;
}

header {
    grid-area: h;
    /* background-color: antiquewhite; */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header h2 {
    color:rgb(0, 209, 174);
    font-size: 3em;
    /* font-family: Silkscreen, sans-serif; */
    text-align: center;
    font-weight: 400;
    /* vertical-align: center; */
    /* flex-basis: 300px; */
}

main {
    /* background-color: maroon; */
    grid-area: m;
}

main.home {
    display: grid;
    grid:
        "a a b";
}

main.project {
    margin-top: 30px;
    display: grid;
    grid:
        "a"
        "b";
}

section.me {
    grid-area: a;
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
}

section.me img {
    max-width: 200px;
    border-radius: 100%;
    margin: 30px 0 30px 0;
}

section.info {
    grid-area: a;
    /* background-color: red; */
}

section.info img {
    margin: 0 auto;
}

section.info p {
    padding-left: 20px;
    padding-right: 20px;
}


section.about {
    grid-area: b;
    /* background-color: blue; */
    display: flex;
    flex-direction: column;
    padding: 20px;
}

aside {
    display: none;
    grid-area: s;
    /* background-color: salmon; */
}

footer {
    grid-area: f;
    /* background-color: forestgreen; */
}

nav {
    /* height: 100%; */
}

nav ul {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
    flex-direction: row;
}

nav ul li {
    display: flex;
    margin-left: 10px;
    line-height: 1.4;
    /* vertical-align: middle; */
    align-items: center;
    justify-content: center;
}

main.home ul {
    padding: 0;
    margin: 0;
}

main.home a.project_link {
    padding: 10px;
    background-color: #283030;
    border: 2px solid #00d1ae;
    color: #dedede;
    width: 0%;
    min-width: fit-content;
    transition: transform 0.3s;
    transition-timing-function: steps(4, jump-end);
    margin-top: 5px;
    margin-bottom: 10px;
}

main.home a.project_link:hover {
    color:rgb(0, 209, 174);
    z-index: 1;
    transform: translateY(-2px);
    box-shadow: 5px 5px 0px 0px #00d1ae;
}

ul li {
    list-style-type: square;
}

a {
    color: #00d1ae;
    text-decoration: none;
    transition: all 0.4s;
    transition-timing-function: steps(4, jump-end);
}
a img{
    color: rgb(0, 209, 174);
}

a:link, a:visited{
    color: rgb(0, 209, 174);
}

a:hover, a:active{
    color: rgb(7, 171, 221);
}

ion-icon {
    transition: color 0.2s;
    /* font-weight: bold; */
}

a.logo-instagram:hover,
a.logo-instagram:active {
    color: #E1306C;
}

a.mail-outline:hover,
a.mail-outline:active {
    color: #2fb3ff;
}

a.logo-github:hover,
a.logo-github:active {
    color: #171515;
}

a.logo-linkedin:hover,
a.logo-linkedin:active {
    color: #0A66C2;
}

.social-icon {
    font-size: 2em;
    margin-left: 10px;
}

a.btn {
    padding: 10px 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    border-radius: 2px;
    width:fit-content;
    border: 2px solid #00d1ae;
    text-align: center;
}

a.btn_full {
    background-color: #00d1ae;
    color: #333333;
}

a.btn_ghost {
    background-color: #00000000;
    color: #00d1ae;
    border: 2px solid #00d1ae;
}

a.btn:hover {
    color: #dedede;
    background-color: #333;
    border: 2px solid #dedede;
    transform: scale(1.02);
}

a.btn:active {
    color: #bbb;
    border: 2px solid #bbb;
    transform: translateY(-2px);
    transform: scale(1.02);
    transition: all 0.2s;
    transition-timing-function: steps(8, jump-end);
}
/* ---------- */
/* Footer */
/* ---------- */

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer p {
    margin: 20px;
}

section.in_depth {
    /* padding: 10px 20px; */
    width: 85%;
    margin: 0 auto;
}

section.in_depth div {
    position: relative;
    display: block;
    /* height: auto; */
    overflow: hidden;
    margin-bottom: 15px;
}

section.in_depth img {
    width: 48%;
}

.right {
    float: right;
    padding-left: 2%;
}

.center-text {
    text-align: center;
}

.left {
    float: left;
    padding-right: 2%;
}

video {
    width: 80%;
    margin: 0 auto;
    /* width: 795px; */
    /* height: 720px; */
}