/* Resume styles.css */
/* This file contains styles for the resume 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: 25px;
}

/* 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;
}

/* Center and size main content */

.main-content {
    margin: auto;
    width: 60%;
}

/* Header */

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

.download {
    text-align: center;
}

.download a {
    text-decoration: none;
    color: #dadada;
}

.download span {
    text-decoration: underline;
}

/* Section 1 styles */

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

#we {
    text-align: center;
    border-radius: 35px;
    background-color: #3e3e42;
    padding: 30px;
    margin: 10px;
}

/* Work experience 1 styles */
.wec-one {
    border-radius: 50px;
    background-color: #3e3e42;
    padding: 30px;
    margin: 10px;
}

#wecj-one {
    padding-top: 10px;
    text-align: center;
}

#wecl-one {
    text-align: center;
}

#wect-one {
    text-align: center;
}

/* Work experience 2 styles */
#wecj-two {
    padding-top: 10px;
    text-align: center;
}

#wecl-two {
    text-align: center;
}

#wect-two {
    text-align: center;
}

/* Work experience 3 styles */
#wecj-three {
    padding-top: 10px;
    text-align: center;
}

#wecl-three {
    text-align: center;
}

#wect-three {
    text-align: center;
}

/* Work experience 4 styles */
#wecj-four {
    padding-top: 10px;
    text-align: center;
}

#wecl-four {
    text-align: center;
}

#wect-four {
    text-align: center;
}

/* Work experience 5 styles */
#wecj-five {
    padding-top: 10px;
    text-align: center;
}

#wecl-five {
    text-align: center;
}

#wect-five {
    text-align: center;
}

/* Work experience 6 styles */
#wecj-six {
    padding-top: 10px;
    text-align: center;
}

#wecl-six {
    text-align: center;
}

#wect-six {
    text-align: center;
}

/* Education styles */

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


/* Skills styles */

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

.footer {
    background-color: #3e3e42;
    padding: 20px;
    text-align: center;
    border-radius: 35px;
    margin-top: 20px;
}