@import url('https://fonts.googleapis.com/css2?family=Source+Code+Pro&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Barcode+39+Text&display=swap');

html {
    background: linear-gradient(90deg, #e7253b, #42a0e6);
}

main {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 1% auto;
    width: 80%;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
    border-radius: 10px;
}

.navbar {
    margin-top: 20px;
    padding-top: 15px;
    margin-right: 20px;
    display: flex;
    flex-direction: row-reverse;
}

.navbutton {
    background: black;
    color: white;
    height: 40px;
    width: 120px;
    margin-right: 20px;
    margin-top: 15px;
    font-family: "Source Code Pro", sans-serif;
    border-radius: 5px;
    border: none;
    font-size: 18px;
    margin-left: 20px;
}

.navbutton:active {
    background: black;
}

.navbutton:focus {
    background: #000000;
}

.navbutton:hover {
    background: linear-gradient(90deg, #e7253b, #42a0e6);
}

.navbutton-no-tint {
    border: none;
    color: black;
    height: 40px;
    background: white;
    width: 150px;
    margin-top: 15px;
    margin-left: 10px;
    font-family: "Source Code Pro", sans-serif;
    font-size: 18px;
    border-radius: 5px;
}

.navbutton-no-tint:active {
    background: white;
    color: black;
}

.navbutton-no-tint:focus {
    background: #000000;
    color: white;
}

.navbutton-no-tint:hover {
    background: #000000;
    color: white;
}


.info {
    display: flex;
    flex-direction: column;
    padding: 4%;
    flex-wrap: wrap;
}

.head-info {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.avatar {
    border-radius: 5px;
    width: 20%;
    height: 20%;
}

.job-title {
    font-family: "Libre Barcode 39 Text", sans-serif;
    color: #161616;
}

.contact-info {
    flex-direction: column;
    margin-left: 5%;
    margin-top: 0;
    font-family: "Source Code Pro", sans-serif;
    flex-wrap: wrap;
}

.about-info {
    display: flex;
    flex-direction: row;
    margin-top: 5%;
    position: relative;;
}

.career-info {
    display: block;
    width: 50%;
}

.career-text {
    font-size: large;
    font-family: "Source Code Pro", sans-serif;
}

.about-h5 {
    font-family: "Source Code Pro", sans-serif;
}

.skillset {
    flex-wrap: wrap;
    margin-left: 20%;
    width: 25%;
}

.skill-chip {
    display: inline-block;
    margin-right: 5px;
    margin-top: 5px;
    margin-bottom: 5px;
    background: black;
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.copyright-info {
    display: flex;
    justify-content: center;
    justify-items: center;
    font-family: "Source Code Pro", sans-serif;
}






