/* style.css */

/* COLORS:
light gray: 211,211,211
charcoal gray 54, 69, 79
steel blue: 176, 196, 222
sky blue: 135, 206, 235

/* Reset some default styles */

a {
    text-decoration: none;
}

/* Basic styles */
html, body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  height: 100vh;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    padding: 0;
    background-color: rgba(0, 0, 0, 1.00);
}

header, footer {
  background-color: rgba(176, 196, 222, 0.07);
  color: rgba(176, 196, 222, 1.00);
  padding: 1.2rem;
}

header {
    border-bottom-style: solid;
    border-width: 1px;
    border-bottom-color: skyblue;
}

header h1 {
  margin: 0;
  padding: 0;
}

footer {
    border-top-style: solid;
    border-width: 1px;
    border-top-color: skyblue;
    margin-top: auto;
}

section {
  padding: 1.2rem;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
  margin-right: 10px;
}

nav ul li a {
  color: rgba(176, 196, 222, 0.66);
  text-decoration: none;
}

a:hover{
  color: rgba(135, 206, 235, 1.00);
  text-decoration: none;
}

.content-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    background-color: rgba(176, 196, 222, 0.22);
}

/* TIMELINE PAGE */

.title {
    text-align: center;
    color: rgba(176, 196, 222, 1.00);
}

.timeline-node {
    margin: 0.7rem;
    border: solid;
    border-color: rgba(54, 69,79, 1.00);
    background-color: rgba(176, 196, 222, 0.22);
}

.education-container {
    display: flex;
    flex-direction: column-reverse;
    border-style: solid;
    border-color: rgba(54, 69,79, 1.00);
    background-color: rgba(176, 196, 222, 0.22);
    width: 85vw;
    max-width: 90ch;
}

.edu-header-container {
    display: flex;
    flex-direction: column;
    align-items: space-between;
    justify-content: center;
}

.institution-location-container {
    display: inline-flex;
    justify-content: space-between;
    align-items: stretch;
    padding-inline: 0.7rem;
    margin-top: -1rem;
}

.institution-location-container a {
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
    font-size: 1.10rem;
    text-decoration: underline;
}

.timeline-institution-name {
    font-size: 1.10rem;
    font-style: italic;
}

.timeline-container {
    display: flex;
    flex-direction: column-reverse;
    background-color: rgba(176, 196, 222, 0.22);
    border: solid;
    border-color: rgba(54, 69,79, 1.00);
    width: 85vw;
    max-width: 90ch;
}

.job-header-container {
    display: flex;
    flex-direction: column;
    align-items: space-between;
    justify-content: center;
    border-bottom: solid;
    border-bottom-color: rgba(54, 69, 79, 1.00);
}

.title-date-container {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding-inline: 0.7rem;
    margin-top: -0.7rem;
    margin-bottom: -1rem;
}

.title-container {
    max-width: 17rem;
    text-align: left;
    font-size: 1.2rem;
}

.date-container {
    max-width: 17rem;
    text-align: right;
}

.company-location-container {
    display: inline-flex;
    justify-content: space-between;
    align-items: stretch;
    padding-inline: 0.7rem;
    margin-top: -1rem;
}

.bullet-points-container {
    background-color: rgba(176, 196, 222, 0.32);
    margin: 1rem;
    border: solid;
    border-color: rgba(54, 69,79, 1.00);
}

.timeline-company-name {
    font-size: 1.10rem;
    font-style: italic;
}

.timeline-bullet-list {
    list-style-type: circle;
    padding: 1.2rem;
    margin-left: 0.3rem;
}

.timeline-bullet-list li {
    padding: 0.3rem;
}

/* WELCOME PAGE */

.welcome-container {
    display: flex;
    flex-direction: column;
    background-color: rgba(176, 196, 222, 0.22);
    border: solid;
    border-color: rgba(54, 69,79, 1.00);
    width: 85vw;
    max-width: 120ch;
    padding: 1.2rem;
    padding-bottom: 4.2rem;
    margin-bottom: 0;
}

.welcome-container a {
    font-weight: bold;
    color: black;
    opacity: 0.60;
}

.welcome-container a:hover {
    color: skyblue;
}


.welcome-header-container {
    width: 80%;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    /*display: inline-flex; */
    justify-content: center;
    align-self: center; 
    align-items: center;
    margin-bottom: -1rem;
}

.post-title-container {
    text-align: left;
    font-size: 1.2rem;
    margin-right: 1.2rem;
    color: rgba(176, 196, 222, 0.80);
}

.welcome-date-container {
    text-align: left;
    font-style: italic;
    margin-left: 1.2rem;
}

.post-content {
    width: 90%;
    background-color: rgba(176, 196, 222, 0.32);
    border: solid;
    border-color: rgba(54, 69, 79, 1.00);
    align-self: center;
    align-items: center;
    padding: 1rem;
}

/* FOOTER INFO */

.footer-content {
    display: inline;
    padding: 1rem;
}

.footer-content span {
    display: inline-block;
    vertical-align: middle;
}

.footer-list-container {
    float: left;
    size: 2rem;
}

.copyright-container {
    float: right;
    vertical-align: middle;
    display: table;
}

.copyright-container p {
    text-align: center;
    vertical-align: middle;
    display: table-cell;
}

.footer-list {
    list-style-type: none;
}

.footer-list li {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
}

.footer-list li a {
  color: rgba(176, 196, 222, 0.66);
  text-decoration: none;
}

.footer-list li a:hover{
  color: rgba(135, 206, 235, 1.00);
  text-decoration: none;
}
