/* About styles.css */
/* This file contains styles for the about page of the website. */


/* Font import */

@font-face {
    font-family: 'monaspace-radon';
    src: url('/Assets/Fonts/MonaspaceRadonVar.woff2') format('woff2');
}

@font-face {
    font-family: 'monaspace-krypton';
    src: url('/Assets/Fonts/MonaspcaeKryptonVar.woff2') format('woff2');
}

/* General styles */

:root {
    background-color: #1e1e1e;
    color: #dadada;
    font-family: 'monaspace-radon', monospace;
}

/* sidebar container */

.sidebar-left {
    width: 150px;
    background-color: #3e3e42;
    padding: 10px;
    position: fixed;
    height: auto;
    border-radius: 20px;
}

/* Profile picture styles */

.profile-picture {
    width: 100px;
    height: auto;
    border-radius: 75%;
}

.profile-picture-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

/* Site meta styles */

.site-title {
    font-size: 16px;
    font-weight: 800;
    text-align: center;
}

.site-description {
    font-size: 13px;
    text-align: center;
}

/* social media menu styles */

.menu-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

.menu-social li {
    display: inline-block;
    padding: 9px;
}

.github-icon-left {
    width: 30px;
    height: auto;
}

.linkedin-icon-left {
    width: 30px;
    height: auto;
}

.mail-icon-left {
    width: 30px;
    height: auto;
}

/* Main menu styles */

.main-menu {
    list-style: none;
    padding: 0;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
}

.main-menu li {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 10px;
}

.main-menu img {
    width: 30px;
    height: auto;
}

.main-menu p {
    margin-left: 10px;
    font-size: 14px;
}

/* Main content styles */
.main-container {
    margin: auto;
    width: 60%;
}

/* header styles */
.header {
    border-radius: 50px;
    background-color: #3e3e42;
    text-align: center;
    padding: 5px;
    margin: 10px;
}

/* Center and size main content */
.section-one {
    border-radius: 50px;
    background-color: #3e3e42;
    text-align: center;
    padding: 5px;
    margin: 10px;
}

#fork {
    width: 10px;
    height: auto;
}

#forks {
    width: 25px;
    height: auto;
}

.bold {
    font-weight: bold;
}

.section-two {
    border-radius: 50px;
    background-color: #3e3e42;
    text-align: center;
    padding: 5px;
    margin: 10px;
}

.section-three {
    border-radius: 50px;
    background-color: #3e3e42;
    text-align: center;
    padding: 5px;
    margin: 10px;
}

.section-four {
    border-radius: 50px;
    background-color: #3e3e42;
    text-align: center;
    padding: 5px;
    margin: 10px;
}

.section-five {
    border-radius: 50px;
    background-color: #3e3e42;
    text-align: center;
    padding: 5px;
    margin: 10px;
}

.footer {
    display: flex;
    justify-content: center;
    margin: auto;
    width: 60%;
    background-color: #3e3e42;
    text-align: center;
    border-radius: 60px;
    height: 60px;
}