/* landing styles.css */
/* This file contains styles for the landing 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 {
    margin: auto;
    width: 60%;
}

/* header styles */

.header-container {
    border-radius: 50px;
    background-color: #3e3e42;
    text-align: center;
    padding: 5px;
}

/* Section 1 styles */

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

/* Section 2 styles */

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

.section-two-container h2 {
    text-align: center;
}

.section-two-container h4 {
    text-align: center;
}

.section-two-container p {
    text-align: center;
}

#duck img {
    height: 10px;
    width: auto;
    padding-right: 5px;
}

#duck {
    display: flex;
    align-items: center;
    justify-content: left;
    margin: auto;
    width: 60%;
}

/* Section 3 styles */

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

/* Section 4 styles */

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

.section-four-container ul {
    list-style-type: none;
}

.section-four-container li {
    list-style-type: none;
}

.section-four-container a {
    color: #dadada;
    text-decoration: none;
}

/* Section 5 styles */

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

.section-five-container li {
    list-style-type: none;
    display: inline-block;
    padding: 75px;
}

.section-five-container a {
    text-decoration: none;
    color: #dadada;
}

/* Section 6 styles */

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

/* footer Styles */

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

.footer li {
    list-style: none;
    display: inline-block;
    padding-right: 50px;
}

.footer img {
    width: auto;
    height: 25px;
}