body {
    font-family: "Helvetica";
    display: flex;
    flex-direction: column;
    background-color: #C0DFC7;
}

html,
body {
    height: 100%;
}

.wrapper {
    flex: 1 0 auto;
    width: 100%;
    margin-bottom: 50px;
}

.tablink {
    background-color: #7DDF92;
    color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    width: 25%;
    text-align: center;
    transition: all 0.5s;
    font-size: 14px;
    padding: 5px;
    line-height: 20px;
}

.tablink span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.tablink span:after {
    content: "\2023";
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.tablink:hover span {
    padding-right: 25px;
}

.tablink:hover span:after {
    opacity: 1;
    right: 0;
}

.header {
    background-color: #529360;
    color: white;
    display: none;
    padding: 10px;
    text-align: center;
    line-height: 75%;
}

footer {
    background-color: #36603F;
    color: white;
    text-align: center;
    line-height: 50px;
    display: flex;
    justify-content: center;
    flex-direction: row;
    flex-shrink: 1;
    min-height: 15%;
    margin-bottom: 0px;
    width: 100%
}
.push {
    min-height: 10%;
}

.content {
    display: flex;
    flex-direction: row;
    margin: auto;
    justify-content: center;
}

.card {
    background-color: #8EA593;
    color: white;
    width: 55%;
    height: 75%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    margin-top: 75px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: auto;
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}
.head {
    animation-duration: 2s;
    -webkit-animation-duration: 2s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both;
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-webkit-keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
.fadeIn {
    animation-name: fadeIn;
    -webkit-animation-name: fadeIn;
}
.cardimg {
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    width: 30%;
}
.cardcontent {
    padding-left: 20px;
    padding-right: 20px;
    height: 100%;
    width: 95%;
    margin: auto;
}
.thumbnailbox {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;

}
.thumbnail {
    border: 1px solid white;
    border-radius:4px;
    padding: 5px;
    background: white;
    margin: 5px;
    width: 150px;
}
.thumbnail:hover {
    box-shadow: 0 0 10px 6px #7DDF92;
}
button.dropdown {
    background-color: #529360;
    color: white;
    cursor: pointer;
    padding: 18px;
    width: 97.5%;
    text-align: center;
    border: none;
    outline: none;
    transition: 1s;
    margin-bottom: 10px;;
}
button.dropdown.active, button.dropdown:hover {
    background-color: #7DDF92;
}
div.dropcontent {
    padding: auto;
    background-color: #C0DFC7;
    color: #36603F;
    display: none;
    width: 97.5%;
    font-size: 14px;
    margin-bottom: 10px;
    
}
.education, .experience, .skills {
    padding: 20px;
}

.socialbox {
    margin-left: 20%;
 
}
.socialicon {
    width: 20%;
    border: 0;
    padding-top: 10px;
    margin-top: 10px;
}
.foottext {
    margin-left: 33%;
    width: 30%;
    font-size: 14px;
    line-height: 100%;
}

button.download {
    float: right;
    background-color:#529360;
    color: white;
    cursor: pointer;
    padding: 5px;
    width: 15%;
    text-align: center;
    border: none;
    outline: none;
    transition: 1s;
    margin-right: 20px;
    margin-bottom: 1px;
    text-overflow: hidden;
    font-size: .75vw;
}
button.download:hover {
    background-color: #7DDF92;
}


.tooltip {
    position: relative;
    display: inline-block;
   
}


.tooltip .tooltipText {
    visibility: hidden;
    width: 120px;
    background-color: #555;
    color: #fff;
    text-align: center;
    padding: 10px 10px 10px 10px;
    border-radius: 6px;
    position: absolute;
    z-index: 1;
    bottom: 106%;
    left: 50%;
    margin-left: -60px;
    opacity: 0;
    transition: opacity 1s;
    letter-spacing: 1px;
    line-height: 125%;
}

.tooltip .tooltipText::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltipText {
    visibility: visible;
    opacity: 1;
}