* {
    margin: 0;
}

a:-webkit-any-link {
    color: inherit;
    cursor: pointer;
    text-decoration: none;
}

body{
    background-color: #D8D7E7;
}

/* HEADER */
.homeLink{
    display: inline-flex;
    font-family: 'Lydian';
    justify-content: left;
    align-items: center;
    justify-items: left;
    text-align: left;
    font-size: 35px;
    color: #000000;
    font-style: normal;
    font-weight: normal;
    line-height: 47px;
    letter-spacing: 0.02em;
    text-decoration: none !important;
    padding: 8px 0px 8px 0px;
}

/* LIST OF NAV LINKS IN THE HEADER */
.headerLink{
    display: inline-flex;
    float: right;    
    font-family: Helvetica;
    color: #000000;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    align-items: center;
    margin: 20px 0% 0% 1%;
    cursor: pointer;
    transition: all .2s ease-in;
}

.currentLink{
    display: inline-flex;
    float: right;    
    font-family: Helvetica;
    color: #9D9CC4 !important;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    align-items: center;
    margin: 20px 0% 0% 1%;
    cursor: pointer;
    transition: 0.2s ease-in;
}

.headerLink:hover{
    color: #ffffff;
    display: inline-flex;
    transition: .2s ease-in;
}

.navLinkContainer{
    margin-left: 2%;
    margin-right: 2%;
}

.inquire{
    display: inline-flex;
    float: right;    
    font-family: Helvetica;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    align-items: center;
    margin: 15px 0% 0% 1%;
    cursor: pointer;
    transition: all .2s ease-in;
    border: solid 1px;
    padding: 3px 5px 3px 5px;
    background: #CCFF00;
    color: #000000;
}

.inquire:hover{
    background:honeydew;
    color:hotpink;
}

/* MAIN CONTENT BELOW */
.resumeMain{
    width: 100vw;
    height: 100vh;
    background-color: #D8D7E7 !important;
}

.resumeContainer{
    height: 85vh;
    width: 75vw;
    margin-top: 2%;
    margin-left: 5%;
    padding-right: 15vw;
    overflow: scroll;
}

.resumeHeading{
    font-family: Pilowlava;
    font-size: 3.5vw;
}

.resumeSubhead{
    font-family: 'Mondwest-Regular' !important;
    font-size: 2vw;
    letter-spacing: 0.02em;
    color: #000000;
    margin: 4% 0% 0% 0%;
}

.job{
    font-family: Helvetica;
    font-size: 0.8vw;
    font-weight: 400;
    margin: 1.5% 0% 1% 0%;
    letter-spacing: 0.02em;
    line-height: 140%;
}

.job p{
    font-family: 'Mondwest-Regular' !important;
    font-size: 1.1vw;
    letter-spacing: 0.02em;
    line-height: 130%;
    color: #5d58a5;
}

.date{
    display: inline-flex;
    float: right;
}

.job.skills p{
    margin: 1% 0% 1% 0%;
}

.job.skills.container {
    display: flex;
    width: 450px;
}

.flex-child {
    flex: 1;
    border: none;
    padding: none;
    margin: none;
}  

.flex-child.line{
    text-align: center;
}

.flex-child.years{
    text-align: right;
}

/* FUN LITTLE PURPLE SCROLLBAR FOR THE LIST OF THINGS I'VE DONE */
.resumeContainer::-webkit-scrollbar{
    width: 10px;  
     height: 0px;
}

.resumeContainer::-webkit-scrollbar-track:vertical {
    background: #f1f1f1;
    border-radius: 50px;
    padding-bottom: 0%;
}
  
  .resumeContainer::-webkit-scrollbar-thumb:vertical {
    background: #a396ff;
    border-radius: 50px;
    padding-bottom: 0%;
}

  .resumeContainer::-webkit-scrollbar-track-piece:vertical{
      background: #f1f1f1;
      border-radius: 50px;
      padding-bottom: 0%;
}

  .resumeContainer::-webkit-scrollbar-corner:vertical{
      display: none;
      padding-bottom: 0%;
}
  
  .resumeContainer::-webkit-scrollbar-track:horizontal {
    display: none;
    padding: 0%;
}
  
  .resumeContainer::-webkit-scrollbar-thumb:horizontal {
    display: none;
    padding: 0%;
}

  .resumeContainer::-webkit-scrollbar-track-piece:horizontal{
    display: none;
    padding: 0%;
}

/* FOOTER */
footer {
    background-color: #9D9CC4;
    display: block;
    padding: 3%;
}

footer ul{
    list-style-type: none;
    display: flex;
}

.copyright{
    display: flex;
    width: 10vw;
    margin: auto;
    padding-bottom: 3%;
}

.footerLink{
    margin: auto;
    transition: all .2s ease-in;
}

.footerLink a{
    text-decoration: none !important;
    color: #ffffff;
    font-family: Helvetica;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all .2s ease-in;
}

.footerLink a:hover{
    color: #000000;
}

