:root {
    font-family:'Courier New', Courier, monospace;
    transition-duration: 0.4s;
    --background: #F7EFE5;
    --primary: #674188;
    --secondary: #E2BFD9;
    --secondary-hover: #C8A1E0;
    --tertiary: #F9DBBA;
    background-color: #F7EFE5;
}
.navbar {
    background-color: var(--secondary);
    width: 100%;
    flex-direction: row;
    flex-basis: auto;
    display: flex;
    border-radius: 50px;
}

a {
    transition-duration: 0.4s;
    text-decoration: none;
    color: black;
}

button {
    transition-duration: 0.4s;
}
p {
    text-indent: 2vh;
}

a:hover {
    color: white;
}

.navbar ul {
    display: flex;
    
}

.navbar ul li {
    list-style-type: none;
    padding: 2vh;
}

.navbar ul li a {
    color: black;
    text-decoration: none;
    font-weight:bold;
}

.navbar ul li a:hover {
    color: white;
}

.introduction {
    justify-items: stretch;
    display: flex;
    padding: 5%;
    font-size: large;
}

.introduction body p {
    flex-direction: column;
}

.introduction .headshot {
    width: 40%;
    height: 40%;
    border-radius: 100%;
}
.introduction .headshot img:hover {
    size: 180%;
}

.hero_title {
    align-self: center;
    text-align: center;
    font-style: italic;
    font-size: xx-large;
}

.introduction body {
    max-width: 30%;
    height: auto;
}

.call_to_action {
    justify-content: center;
    display: flex;
    width: 100%;
}

.call_to_action a {
    align-self: center;

}
.call_to_action button {
    padding: 20;
    color: black;
    font-style:italic;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    background-color:var(--secondary);
    font-size: large;
}
.call_to_action button:hover {
    color: white;
    background-color: var(--secondary-hover);
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24), 0 17px 50px 0 rgba(0,0,0,0.19);
    
}

.portfolio {
    display: flex;
    justify-content: center;
    padding: 2vh;
}

.portfolio-container {
    padding-left: 2vh;
    width: 70%;
}

.portfolio-sidebar {
    border-radius: 12px;
    width: 30%;
    height: 100%;
    padding: 1vh;
    background-color: var(--tertiary);
    display: flex;
    flex-direction: column;
    text-align: center;
}
.portfolio-sidebar .icon, a {
    vertical-align: middle;
    display: inline-block;

}

.portfolio-sidebar h3 {
    text-align: center;
    font-style: italic;
    font-weight: bold;
}

.portfolio-sidebar a {
    width: 100%;
    flex-direction: row;
    margin-bottom: 10px;
}

.portfolio-section {
    border-radius: 12px;
    padding: 1vh;
    margin-bottom: 2vh;
    background-color:var(--secondary);
    transition-duration: 0.4s;
    justify-items: center;
    justify-content: center;
}

.portfolio-section:hover {
    background-color:var(--secondary-hover);
    padding: 0.5vh;
}

.portfolio-section .header {
    display: flex;
    width: 100%;
}

.portfolio-section .description {
    padding: 1vh;
    justify-content: center;
}

.portfolio-section .header .experience-text {
    font-weight: bold;
    text-align: left;
    padding: 2vh;
    width: 60%;
}

.portfolio-section .header .experience-dates {
    font-weight: 500;
    text-align: right;
    font-style: italic;
    padding: 2vh;
    width: 40%;
}

.portfolio-section .outgoing-info {
    width: 100%;
    justify-self: center;
    padding: 1vh;
    color: white;
    font-style:italic;
    font-weight:500;
    border: none;
    border-radius: 6px;
    background-color:var(--primary);
    font-size: large;
}   








.qualifications-container {
    display: flex;
    justify-content: center;
    padding: 2vh;
}

.qualifications-container .qualifications-box {
    border-radius: 12px;
    padding: 1vh;
    margin-bottom: 2vh;
    background-color:var(--tertiary);
    transition-duration: 0.4s;
    justify-items: center;
    justify-content: center;
    flex-grow: 1;
    margin: 2vh;
    min-width: 40%;
}
.qualifications-container .qualifications-box .header {
    text-align: center;
    font-style: italic;
    font-weight: bold;
}

















/*CHATGPT*/
.chatgpt_header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
}

.chatgpt_header h1 {
    margin: 0;
    font-size: 2.5em;
}

.chatgpt_content {
    padding: 20px;
}

.chatgpt_section {
    margin-bottom: 20px;
    background-color: #fff;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.chatgpt_section h2 {
    color: #333;
    font-size: 1.8em;
    margin-bottom: 10px;
}

.chatgpt_section p {
    font-size: 1.1em;
    color: #555;
}

.chatgpt_footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}






