@font-face { font-family: Roboto; src: url('/fonts/Roboto-Regular.ttf'); } 
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Arial;
}

body {
    color: #252525;
    background-color: #cbc8c4;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 5px 3%;
    background-color: #6889a5;
    width: 100%;
    height: 17vh;
}

.logo {
    width: 120px;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 10px 20px;

}
nav ul li a {
    color: #252525;
    text-decoration: none;
    font-size: 20px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 2px;
    background: #252525;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

#intro-text {
    margin: 10% 0%;
    font-size: 5.5rem;
    display: inline-block;
}

#headshot {
    width: 60%;
}

#intro {
    display: flex;
    background-image: url('/images/Tristan Forks - Headshot no background.png');
    background-position: right;
    background-size: 40%;
    background-repeat: no-repeat;
    margin: 5% 15%;
    padding: 5% 0%;
    animation-name: appear;
    animation-duration: 2s;
}

@keyframes appear {
    0% {scale: 0;}
    100% {scale: 1;}
}

#about-text {
    margin: 5% 10%;
    font-size: 20px;
    color: #252525;
    padding: 2% 2%;
}

#about-header {
    color: #252525;
    font-size: 2.5rem;
    margin: 0% 0% 1% 0%;
}

#about-background {
    margin: -2.5% 0% -3% 0%;
    background-color: #6889a5;
    background-size: contain;
    animation: About 2s;
}

#about-experience-background {
    background-color: #353535;
    margin: -4% 0% -3% 0%;
    background-size: contain;
}

#about-experience-header {
    margin: 5% 10% 0% 10%;
    color: #cbc8c4;
    padding: 2% 2%;
    font-size: 2.5rem;
}

#about-experience-content {
    color: #cbc8c4;
    padding: 2% 2%;
    margin: -3% 10% 10% 10%;
    font-size: 20px;
}

#about-experience-content h4 {
    font-size: 24px;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 2px;
}

#about-experience-content ul {
    display: flex;
    justify-content: center;
    list-style: circle;
}

#about-experience-content ul li {
    margin: 0px 10px 0px 10px;
    padding: 10px;
    padding-left: 0;
}

#about-experience-content a button {
    font-size: 20px;
    color: #252525;
    background-color: #cbc8c4;
    border-color: #cbc8c4;
    border-style: solid;
    padding: 10px;
    border-radius: 0%;
    transition: 0.5s;
}

#about-experience-content a button:hover {
    background-color: #353535;
    color: #cbc8c4;
    cursor: pointer;
}

#about-Extracurriculars-background {
    background-color: #6889a5;
    margin: -9% 0% -3% 0%;
    background-size: contain;
}

#about-Extracurriculars-header {
    margin: 5% 10% 0% 10%;
    color: #252525;
    padding: 2% 2%;
    font-size: 2.5rem;
}

#about-Extracurriculars-content {
    color: #252525;
    padding: 2% 2%;
    margin: -3% 10% 10% 10%;
    font-size: 20px;
}

#about-Extracurriculars-content h4 {
    font-size: 24px;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 2px;
}

#about-Extracurriculars-content ul {
    display: flex;
    justify-content: center;
}

#about-Extracurriculars-content ul li {
    list-style: none;
    padding: 50px;
}

#about-Extracurriculars-content a button {
    font-size: 20px;
    color: #cbc8c4;
    background-color: #252525;
    border-color: #252525;
    border-style: solid;
    padding: 10px;
    transition: 0.5s;
}

#about-Extracurriculars-content a button:hover {
    background-color: #6889a5;
    color: #252525;
    cursor: pointer;
}

.book {
    transition: 1s;
    border-radius: 20%;
}

.book:hover {
    background-color: #cbc8c4;
    margin: 10px;
    border-radius: 20%;
}

#about-blog-background {
    background-color: #353535;
    margin: -9% 0% -3% 0%;
    background-size: contain;
}

#about-blog-header {
    margin: 5% 10% 0% 10%;
    color: #cbc8c4;
    padding: 2% 2%;
    font-size: 2.5rem;
}

#about-blog-content {
    color: #cbc8c4;
    padding: 2% 2%;
    margin: -3% 10% 10% 10%;
    font-size: 20px;
}

#about-blog-content a h4 {
    font-size: 24px;
    text-decoration: underline;
    text-decoration-thickness: 3px;
    text-underline-offset: 2px;
    color: #cbc8c4;
}

.continue-reading-button {
    font-size: 20px;
    color: #252525;
    background-color: #cbc8c4;
    border-style: none;
    padding: 2px;
    transition: 0.5s;
    opacity: 1;
}

.continue-reading-button:hover {
    opacity: 0.8;
    color: #252525;
    cursor: pointer;
}

#about-blog-button {
    font-size: 20px;
    color: #252525;
    background-color: #cbc8c4;
    border-color: #cbc8c4;
    border-style: solid;
    padding: 10px;
    transition: 0.5s;
}

#about-blog-button:hover {
    background-color: #353535;
    color: #cbc8c4;
    cursor: pointer;
}


footer {
    background-color: #6889a5;
    margin: -9% 0 0 0;
}

.footer-container {
    width: 100%;
    padding: 50px 30px 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
}

.social-icons a {
    text-decoration: none;
    padding: 10px;
    background-color: #252525;
    margin: 0px 10px 0px 10px;
    border-radius: 35%;
}

.social-icons a svg {
    width: 30px;
    height: auto;
    color: #cbc8c4;
    opacity: 0.9;
}

.social-icons a:hover {
    background-color: #cbc8c4;
    transition: 0.5s;
}

.social-icons a svg:hover {
    color: #252525;
    transition: 0.5s;
}

.footer-nav {
    margin: 10px 0;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
}

.footer-nav ul li a {
    color: #252525;
    margin: 0px 10px 0px 10px;
    text-decoration: none;
    font-size: 20px;
    opacity: 0.7;
    transition: 0.5s;
}

.footer-nav ul li a:hover {
    opacity: 1;
}

.footer-bottom {
    padding: 10px;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .footer-nav ul {
        flex-direction: column;
    }
    .footer-nav ul li {
        width: 100%;
        text-align: center;
        margin: 10px;
    }
}

.toggle-button {
    position: absolute;
    top: 6%;
    right: 25px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 31px;
    height: 21px;
}

.toggle-button .bar {
    height: 3px;
    width: 100%;
    background-color: #252525;
    border-radius: 10px;
}

@media screen and (max-width: 992px) {
    #about-experience-content ul {
        display: flex;
        justify-content: center;
        list-style: circle;
        flex-wrap: wrap;
    }
    #about-Extracurriculars-content ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
    #about-Extracurriculars-content ul li {
        padding: 10px;
    }
    #intro-text {
        font-size: 40px;
    }
    .logo {
        width: 100px;
    }
    .navbar {
        margin: 0 0 50px 0;
    }
    #navbar-links {
        margin: 5% 0 0 0;
        padding: 15px -100px 0 -100px;
        background-color: #252525;
        display: none;
        color: #cbc8c4;
        width: 100%;
        border-radius: 10px;
    }
    #navbar-links li a {
        color: #cbc8c4;
    }
    .toggle-button {
        display: flex;
        background-color: #6889a5;
        border-color: #6889a5;
        border-style: solid;
    }
    #navbar-links:active {
        display: flex;
    }
    nav ul li a::after {
        content: '';
        width: 0;
        height: 2px;
        background: #cbc8c4;
        position: absolute;
        left: 0;
        bottom: -6px;
        transition: 0.5s;
    }
    
    nav ul li a:hover::after {
        width: 100%;
    }
}

@media screen and (max-width:600px) {
    #intro-text {
        font-size: 30px;
    }
}

#experience-timeline {
    background-color: #cbc8c4;
    position: relative;
}

#experience-timeline p {
    font-size: 20px;
}

#experience-timeline h2 {
    font-size: 28px;
}

#experience-timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: #353535;
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
  }

  /* Container around content */
.container-left {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
  }
  
  /* The circles on the timeline */
  .container-left::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: #353535;
    border: 4px solid #6889a5;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }

    /* Container around content */
.container-right {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
  }
  
  /* The circles on the timeline */
  .container-right::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    right: -17px;
    background-color: #353535;
    border: 4px solid #6889a5;
    top: 15px;
    border-radius: 50%;
    z-index: 1;
  }

  /* Place the container to the left */
.container-left {
    left: 0;
  }
  
  /* Place the container to the right */
.container-right {
    left: 50%;
  }
  
  /* Add arrows to the left container (pointing right) */
  .container-left::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    right: 30px;
    border: medium solid #353535;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent #353535;
  }
  
  /* Add arrows to the right container (pointing left) */
  .container-right::before {
    content: " ";
    height: 0;
    position: absolute;
    top: 22px;
    width: 0;
    z-index: 1;
    left: 30px;
    border: medium solid #353535;
    border-width: 10px 10px 10px 0;
    border-color: transparent #353535 transparent transparent;
  }
  
  /* Fix the circle for containers on the right side */
.container-right::after {
    left: -16px;
  }

  /* The actual content */
.timeline-content {
    padding: 20px 30px;
    background-color: #353535;
    color: #cbc8c4;
    position: relative;
    border-radius: 6px;
  }
@media screen and (max-width: 992px) {
    /* Place the timelime to the left */
    #experience-timeline::after {
        left: 31px;
    }
    
    /* Full-width containers */
    .container-left {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    /* Make sure that all arrows are pointing leftwards */
    .container-left::before {
        left: 60px;
        border: medium solid #353535;
        border-width: 10px 10px 10px 0;
        border-color: transparent #353535 transparent transparent;
    }

    /* Full-width containers */
    .container-right {
            width: 100%;
            padding-left: 70px;
            padding-right: 25px;
    }
        
        /* Make sure that all arrows are pointing leftwards */
    .container-right::before {
            left: 60px;
            border: medium solid #353535;
            border-width: 10px 10px 10px 0;
            border-color: transparent #353535 transparent transparent;
    }
    
    /* Make sure all circles are at the same spot */
    .container-left::after, .container-right::after {
        left: 15px;
    }
    
    /* Make all right containers behave like the left ones */
    .container-right {
        left: 0%;
    }
}

#experience-timeline ul {
    display: flex;
    justify-content: center;
    list-style: circle;
    flex-wrap: wrap;
}

#experience-timeline ul li {
    margin: 0px 10px 0px 10px;
    padding: 10px;
    padding-left: 0;
    font-size: 20px;
}

#experience-info {
    display: flex;
    justify-content: center;
    margin: 25px 0 15px 0;
}

#experience-info-content {
    display: flex;
    justify-content: center;
    font-size: 20px;
    margin: 0 0 20px 0;
    text-align: center;
}

#experience-info-content a {
    transition: 0.5s;
}

#experience-info-content a:hover {
    opacity: 0.7;
}

#footer-experience {
    margin: 40px 0 0 0;
    background-color: #6889a5;
}

#footer-contact {
    margin: 40px 0 0 0;
    background-color: #6889a5;
}

#contact-info-header {
    display: flex;
    justify-content: center;
    margin: 75px 0 15px 0;
}

#contact-info-content {
    display: flex;
    justify-content: center;
    font-size: 20px;
    margin: 0 0 20px 0;
    text-align: center;
}

.contact-form {
    display: block;
    text-align: center;
    font-size: 20px;
    padding: 30px;
}

.contact-form input {
    font-size: 18px;
    opacity: 0.9;
    transition: 0.5s;
}

.contact-form input:hover {
    opacity: 1;
}

#name {
    width: 300px;
    padding: 5px;
    border-radius: 10px;
    border-style: solid;
    border-color: #252525;
    background-color: #252525;
    color: #cbc8c4;
}

#email {
    width: 400px;
    padding: 5px;
    border-radius: 10px;
    border-style: solid;
    border-color: #252525;
    background-color: #252525;
    color: #cbc8c4;
}

#message {
    width: 500px;
    padding: 5px;
    height: 150px;
    border-radius: 10px;
    border-style: solid;
    border-color: #252525;
    background-color: #252525;
    color: #cbc8c4;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 18px;
    opacity: 0.9;
    transition: 0.5s;
}

#message:hover {
    opacity: 1;
}

#submit {
    padding: 7.5px;
    background-color: #252525;
    border-style: solid;
    border-color: #252525;
    color: #cbc8c4;
    opacity: 0.9;
    transition: 0.5s;
    margin: 0 0 7px 0;
}

#submit:hover {
    color: #252525;
    background-color: #cbc8c4;
    cursor: pointer;
    opacity: 1;
}

@media screen and (max-width: 600px) {
    #name {
        width: 200px;
    }
    #email {
        width: 250px;
    }
    #message {
        width: 350px;
    }
}

#submit-message {
    color: #536d34;
}

#footer-blog {
    background-color: #6889a5;
    float: left;
    width: 100%;
}
#blog-page {
    margin: 0 0 0 0;
}
#blog-left-col {
    float: left;
    width: 37%;
}
#blog-mid-col {
    float: left;
    width: 37%;
    margin: 0px 0px 0 10px;
}
#blog-right-col {
    float: right;
    width: 22%;
    margin: 10px 10px 0 0;
}
.blog-page:after {
    content: "";
    display: table;
    clear: both;
  }

.about-me {
    height: auto;
    border-radius: 10px;
    background-color: #587633;
}
.about-me img {
    width: 100%;
    height: auto;
    left: 50%;
    padding: 10px;
    border-radius: 10px;
}
.about-me h2 {
    text-align: center;
    color: #101010;
}
.about-me p {
    padding: 8px;
    font-size: 18px;
    color: #151515;
    text-align: justify;
}

.blog-post {
    width: 100%;
    height: auto;
    background-color: #55738D;
    opacity: 0.9;
    margin: 10px 0px 10px 20px;
    border-radius: 10px;
}

.blog-heading {
    text-align: center;
    padding: 8px 3px 0 3px;
    color: #101010;
    text-decoration: none;
    font-size: 18px;
}

.blog-heading:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.blog-info {
    margin: -10px 15px 0 15px;
    text-align: justify;
    font-size: 18px;
    color: #151515;
}

.blog-button {
    margin: 10px 0px 10px 15px;
    font-size: 14px;
    padding: 10px;
    border-radius: 5px;
    border-style: none;
    background-color: #252525;
    color: #cbc8c4;
    cursor: pointer;
    opacity: 1;
    transition: 0.5s;
}

.blog-button:hover {
    cursor: pointer;
    opacity: 0.8;
}





@media screen and (max-width: 600px) {
    #blog-left-col, #blog-mid-col, #blog-right-col {
      width: 95%;
      padding: 0;
    }
    #blog-right-col {
        margin: 0 100px 0 0;
    }
    #footer-blog {
        position: relative;
        margin: 0 0 0 0;
        width: 100%;
        float: left;
    }
    #blog-mid-col {
        margin: 0;
    }
    #blog-right-col {
        margin: 0 0 0 0;
    }
}

@media screen and (max-width: 992px) and (min-width: 601px) {
    #blog-left-col, #blog-mid-col, #blog-right-col {
      width: 95%;
      padding: 0;
    }
    #blog-right-col {
        margin: 0;
    }
    #footer-blog {
        position: relative;
        margin: 0 0 0 0;
        width: 100%;
        float: left;
    }
    #blog-mid-col {
        margin: 0;
    }
}

@media screen and (max-width: 1200px) and (min-width:1000px){
    #footer-blog {
        background-color: #6889a5;
        position: relative;
        margin: 0 0 0 0;
        width: 100%;
        float: left;
    }
    #blog-right-col {
        margin: 0;
    }
    
}

@media screen and (max-width: 1800px){
    #footer-blog {
        margin: 20px 0 0 0;
        background-color: #6889a5;
    }
    #blog-right-col {
        margin: 0 10px 0 0;
    }
}



.article-title {
    font-size: 36px;
    text-align: center;
    margin: 20px 0 10px 0;
    color: #252525;
}

.article-text {
    font-size: 20px;
    text-align: justify;
    margin: 0 10% 0 10%;
}
#article-footer {
    background-color: #6889a5;
    margin: 40px 0 0 0;
}

#footer-extracurriculars {
    margin: 40px 0 0 0;
    background-color: #6889a5;
}

.extracurricular-left {
    width: 75%;
    background-color: #353535;
    height: auto;
    border-radius: 20px;
    margin-left: 3%;
    margin-top: 15px;
}

.extracurricular-right {
    width: 75%;
    background-color: #353535;
    height: auto;
    border-radius: 20px;
    margin-left: 22%;
    margin-top: 15px;
}

.extracurricular-heading {
    color: #cbc8c4;
    margin: 0;
    padding: 10px 0 5px 0;
    text-align: center;
    font-size: 30px;
}

.extracurricular-content {
    color: #cbc8c4;
    padding: 0 15px 15px 20px;
    font-size: 20px;
}

.extracurricular-content a {
    color: #cbc8c4;
    font-size: 20px;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 2px;
}

.extracurricular-role {
    color: #cbc8c4;
    margin: 0;
    padding: 0px 0 10px 0;
    text-align: center;
    font-size: 24px;
}

#footer-goals {
    margin: auto;
    background-color: #6889a5;
}



.goal {
    background-color: #353535;
    border-radius: 10px;
    margin: 10px 25px 30px 25px;
    width: 70%;
    margin-left: 15%;
}

.goal-heading {
    color: #cbc8c4;
    text-align: center;
    padding: 10px;
    font-size: 1.8rem;
}
.goal-content {
    color: #cbc8c4;
    padding: 0 50px 20px 50px;
    font-size: 20px;
}

.goal-new {
    padding: 10px 0 0 0;
}

@media screen and (max-width: 700px) {
    .goal-content {
        color: #cbc8c4;
        padding: 0 20px 20px 20px;
        font-size: 20px;
    }
}