::-webkit-scrollbar-track {
    background-color: transparent;
}

header {
    background-color: #f0f0f0;
    overflow: hidden;
    height: 60px;
    position: relative;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}

header .logo {
    float: left;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-left: 15px;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: rgb(44, 44, 44);
    font-size: 50px;
}

header .site-navigation {
    float: right;
    height: 100%;
    margin-right: 10px;
}

header .nav-button {
    height: 100%;
    border: none;
    background-color: transparent;
    font-size: 20px;
    font-style: bold;
    color: black;
    transition: 0.5s;
    margin: 0px;
}
header .nav-button:hover {
    background-color: #797a7a50;
    border-radius: 2px;
    cursor: pointer;
    
}
header a {
    text-decoration: none;
}

header .hamburger {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
    
}
body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #ffffff;
}
main {
    display: inline;
    margin: 15px;
}
.row {
    display: flex;
}

.card {
    margin: 10px;
    padding: 15px;
    background-color: #f0f0f0;
    border-radius: 5px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    font-family: 'Courier New', Courier, monospace;
}

.card h1 {
    font-size: 30px;
}

.card h2 {
    font-size: 20px;
    margin-top: 10px;
    padding: 5px;
}

.card p {
    font-size: 20px;
    margin-top: 10px;
}

.bio {
    flex: 0 0 300px;
    text-align: center;
    height: auto;
}

.bio .profile-picture {
    width: 60%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    border-radius: 50%;
    box-shadow: 0 6px 20px 0 rgba(0,0,0,0.19);
} 
.bio h1 {
    margin-top: 10px;
    margin-bottom: 10px;
}

.bio h2 {
    font-size: 15px;
    margin-top: 5px;
    margin-bottom: 20px;
    color: #888686;
}

.bio .flag {
    height: 0.7em;
}


.bio .link-icon-container .link-icon {
    margin: 0px 10px 0px 10px;
    text-decoration: none;
}

/*
.bio .link-icon-container .link-icon:hover{
    width: 130%;
}
*/

.qualifications {
    width: auto;
}

.interests {
    width: auto;
}

.about a{
    text-decoration: none;
}

.about p {
    margin: 20px 5px 20px 5px;
}

.about h1 {
    margin: 10px 5px 20px 5px;
}
.about a{
    white-space: nowrap;
}

.qualifications {
    flex: 1 0 auto;
    animation-name: example;
    animation-duration: 4s;
}
.skill-container {
    display: flex;
}

.qualifications .skill {
    font-size:15px;
    font-family: Arial;
    font-style: bold;
    background-color: #dddddd10;
    border-radius: 10px;
    padding: 10px;
}
/* 
.qualifications .skill:hover {
    background-color: rgba(121, 122, 122, 0.116);
    transition: all 500ms;
    
} */

.rainbow_text_animated:hover {
    cursor: pointer;
    background: linear-gradient(to right, #6666ff, #0099ff , #00ff00, #ff3399, #6666ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: rainbow_animation 4s ease-in-out infinite;
    background-size: 400% 100%;
    transition: color 0.5s;
}

@keyframes rainbow_animation {
    0%,100% {
        background-position: 0 0;
    }
    50% {
        background-position: 100% 0;
    }
}

.interests {
    flex: 1 0 auto;
}

.blank-space {
    height: 600px;
}





footer {
    width: 100%;
    /*
    position: absolute;
    bottom: 0;
    */
    text-align: center;
}

@media screen and (max-width: 700px) {
    main {
        background-color: black;
        display: inline;
    }
    main .card {
        width: auto;
        font-size: 25px;
        text-align: center;
    }
    main .row {
        display: inline;
    }
  }