body {
    background-color: #ECDFCC;
}

h1 {
    color: #A5B68D;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 500%;
    margin: auto;
}

h2 {
    color: #DA8359;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 250%;
    margin-top: -5px;
}

h3 {
    color: #DA926F;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 180%;
    margin-top: -55px;
}

/* h4 {
    padding-top: 2vh;
    padding-bottom: 2vh;
    margin: auto;
} */

h5 {
    color: #A5B68D;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 1000%;
}

.centerContainer {
    border-radius: 40px;
    padding-top: 5vh;
    padding-left: 3vw;
    padding-bottom: 5vh;
    padding-right: 3vw;
    display: flex;
    opacity: 0;
    width: 65vw;
    margin: 0 auto;
    /* border: 2px dashed; */
    background-color: #FCFAEE;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.welcomeContainer {
    height: 95vh;
    display: flex;
    justify-content: center;
    align-items: center
}

.linkContainer {
   
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
    height: 75vh;
    width: 25vw;
    float: right;
    /* border: 2px dashed; */
}

.personalInfo {
    /* border: 2px dashed; */
    width: 38vw;
    height: 25vh;
    padding-bottom: 5vh;
    line-height: 10vh;
}

.selfImage {
    height:100%;
}

/* .buttonTest {
    height: 100px;
    width: 100px;
    font-size: 15px;
    text-decoration: none;
    background-color: red;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
} */

.navigationButtons path{
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.navigationButtons:hover path {
    fill: #DA926F;
}

.navigationButtons rect{
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    -ms-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.navigationButtons:hover rect {
    fill: #DA926F;
}

.inProfile {
    display: flex;
    align-items: flex-end;
    height: 45vh;
    width: 38vw;
    /* border: 2px dashed; */
}

.socialmediabutton {
    height: 60px;
    width: 60px;
}

.socialmedialinks {
    /* border: 2px dashed; */
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
    margin-bottom: 15px;
}

.divider {
    background-color: #DA926F;
    border-width: 1px;
    border-radius: 2.5px;
    width: 5px;
    height: 275px;
    margin-left: 25px;
    margin-right: 25px;
    margin-bottom: 20px;
}

.buttonTest:hover {
    background-color: purple;
}

@keyframes fade-out {
    0%{opacity: 1;}
    100%{opacity: 0;}
}
.textVanish {
    animation: fade-out 1s;
    animation-fill-mode: forwards;
}

@keyframes fade-in {
    0%{opacity: 0;}
    100%{opacity: 1;}
}
.textAppear {
    animation: fade-in 1.5s;
    animation-fill-mode: forwards;
}

.slideshow img{
    /* border: 2px dashed; */
    display: block;
    max-width: 19vw;
  }

.slide {
    display: none;
}