@font-face {
    font-family: 'JetBrainsMono';
    src: url('assets/fonts/JetBrainsMono-Medium.ttf');
    font-style: normal;
    font-weight: normal;
}

@font-face {
    font-family: 'JetBrainsMono';
    src: url('assets/fonts/JetBrainsMono-Italic.ttf');
    font-style: italic;
    font-weight: normal;
}

@font-face {
    font-family: 'JetBrainsMono';
    src: url('assets/fonts/JetBrainsMono-Bold.ttf');
    font-style: normal;
    font-weight: bold;
}

body{
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0D1117;
    color: #c9d1d9;
    font-family: 'JetBrainsMono', monospace;
}

.base {
    margin: 0;
    max-width: 860px;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    border: 1px solid black;
}


.header ul{
    display: flex ;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: nowrap;
    list-style: none;
    font-weight: bold;
}

.header ul a {
    text-decoration: none;
}

.header ul a:hover{
    text-decoration: underline;
}

header{
    width: 100%;
    background-color: #0D1117;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

main{
    height: 80%;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    background-color: #0D1117;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.whoami{
    margin: 8px;
}

.description{
    font-weight: bold;
    color: #88c0d0;
}

.duration{
    font-weight: normal;
    font-style: italic;
    opacity: 0.6;
}

footer{
    width: 100%;
    background-color: #0D1117;
}

#socials{
    display: flex;
    justify-content: center;
}

.socials-list {
    width: 40%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    font-weight: bold;
}

.socials-list a {
    text-decoration: none;
}

.socials-list a:hover{
    text-decoration: underline;
}

a{
    color: #88c0d0;;
}