html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}

body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/* start of my css  */
body{
    background-color: bisque;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.website{
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
}

/* related to the header */
header{
    height: 100vh;
    width: 100%;
    margin:0;
    padding: 0;
    color:white;
    display: flex;
    flex-direction: column;
    background-color: #4a6fa5;
}

/* Related to header topbar */
.headerBar{
    padding-left: 10px;
    display: inline-flex;
    flex-direction:row;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 0px;
    flex-wrap: nowrap;
    margin-right: 10px;
    padding-right: 100px;
    position:sticky;
    position:fixed;
    top: 0;
    background-color: #4a6fa5;
    height: 40px;
    width: 98.5%;
}

#title{
    font-size: 16px;
    margin-top: 10px;
    min-width: fit-content;
}

#navBar{
    display: inline-flex;
    flex-direction: row;
    justify-content:right;
    gap: 20px;
    font-size: 16px;
    width: 100%;
}

#marketableSkills{
    font-size: 16px;
    margin-top: 10px;
}

#aboutMe{
    font-size: 16px;
    margin-top: 10px;
}

#communityEngagement{
    font-size: 16px;
    margin-top: 10px;  
}

#annotatedBibliography{
    font-size: 16px;
    margin-top: 10px;  
}

#careerGoals{
    font-size: 16px;
    margin-top: 10px;  
}

#final{
    font-size: 16px;
    margin-top: 10px; 
}

/* header like,, the big text  */

.headerText{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 60px;
    margin-top: 20%;
    height: 100px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.headerSubtext{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Related to the header bar's animations for hovering over buttons  */
.headerTabs > div:hover{
    animation: hoverText 0.2s ease-in-out forwards;
}
.headerTabs > div:not(:hover){
    animation: unhoverText 0.1s ease-in-out forwards;
}

.headerTabs a {color: inherit; text-decoration: none;}

.selected{
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

@keyframes hoverText {
    0% {
        transform: translateY(0);
    }

    100%{
        transform: translateY(-2px);
    }
}

@keyframes unhoverText {
    0% {
        transform: translateY(-2px);
    }

    100%{
        transform: translateY(0px);
    }
}


/* related to actual webstie content */
.content{
    display: flex;
    flex-direction: column;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.headTitle{
    margin-top: 20px;
    width: 100%;
    padding-left: 40px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 20px;
    font-size: 45px;
    color: #4a6fa5;
}

.aboutMeSub{
    display: flex;
    flex-direction: row;
    padding-left: 40px;
    padding-top: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color:rgb(0, 0, 0);
    font-size: 20px;
}

#abtMeText{
    width: 40%;
    line-height: 30px;
    margin-right: 90px;
}

#abtMePic img{
    margin-left: 90px;
    width: 42%;
    height: 42%;
    position:absolute;
}

.hobbies{
    margin-top: 100px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: right;
    align-items:flex-end;
    width: 100%;
}

.hobbiesTitle{
    margin-top: 20px;
    padding-right: 80px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 20px;
    font-size: 45px;
    color: #4a6fa5;
}