.Hero {
    font-family: "Lugrasimo", cursive;
    font-weight: 400;
    font-size: 1rem;
    font-style: normal;
    text-align: center;
    height: 45vw;
    background-color: #10439F;
    display: flex;
    justify-content: space-between;
    background: url(Images/Welch_Reflections1.jpg) no-repeat;
    background-size: cover;
    margin: 0;
    
}
body{
    margin: 0;
}
.HeroNavigation ul {
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    text-align: right;
    padding-left: 1000px;
}
.HeroNavigation li{
    padding-left: 2rem;
}

.HeroNavigation a {
    padding: 0.8em;
    border-radius: 10%;
}
.HeroNavigation a:hover {
    color: #e7d1ff;
    background-color: #5E196A;
}
.link::after {
    content: '';
    position: absolute;
    width: 0;
    left: 0;
    bottom: -5px;
    height: 2px;
    transition: width 250ms ease-out; 
}
.link:hover::after {
    width: 100%; 
}
.HeroNavigation a:active, a:visited {
    color:white;
}
h2, h3, h4{
    font-family: "Lugrasimo", cursive;
    font-weight: 400;
    font-style: normal;
}
p, li{
        font-family: "Lugrasimo", cursive;
        font-weight: 400;
        font-style: normal;
}

.section {
    height: 60vh;
    padding: 2vw;
    position: relative;
}
.section :first-child {
    margin-top: 0;
}
.section-1 {
    background-color: #5E196A;
    color: #e7d1ff;
}
.section-2 {
    background-color: #e7d1ff;
    height: 100vh;
    color: #5E196A;
}
img {
    width: 400px;
    height: 380px;
    float: right;
    padding-bottom: 100px;
  }
  .text p{
    max-width: 50vw;
  }

.accordion {
    border-bottom: 1px solid #bbb;
}
.accordion-top {
    cursor: pointer;
}
.accordion-top h3::after {
    content: '\221F';
    transform: rotate(-45deg);
    float: right;
    font-size: 1.7rem;
    line-height: 50%;
    transition: all 150ms;
}
.accordion-body {
    height: 0;
    overflow: hidden;
    transition: all 150ms;
    border-top: 1px solid #ddd;
    margin-left: 2vw;
}

.accordion-body *:first-child {
    margin-top: 0;
}
.accordion.open .accordion-body {
    height: auto;
    padding: 2vw 0;
}
.accordion.open .accordion-top h3::after {
    transform: rotate(135deg);
}
.accordion p{
    max-width: 50vw;
}
/* Need to fix wiggle to get it to work. */
.forClass h3 {
    animation:wiggle 2s infinite ;
    color: #10439F;
}

@keyframes wiggle {
    0% { transform: rotate(0.5deg);}
    25% {transform: rotate(1deg);}
    50% {transform: rotate(1.5deg);}
    75% {transform: rotate(-1deg);}
    100% { transform: rotate(-0.5deg);}
}

/* Media Quearies are sooooo annoying why do you make ua do this dan */
@media screen and (min-width:768px) { 

    .aboutme .forClass {
         display: flex;
         justify-content: space-between;
         max-width: 3000px;
         margin: 0 auto;
     }
 
     .hero {
         display: flex;
         justify-content: space-between;
         max-width: 3000px;
         margin: 0 auto;
         height: 80vh;
     }
 
     img {
         flex-basis: 33%;
     }
    }

/* It's not working, why not?*/
/* i'm not sure how I fixed it but I did. */
 .fade-in {
    opacity: 0;
    transform: translateX(-40px);
    transition:all 1s;
}

.fade-in.in-view{

    opacity: 1;
    transform: translateX(0);
}




