html {
    /* web-page background  */
    background-color: #0093E9;
    background-image: linear-gradient(180deg, #0093E9 0%, #80D0C7 55%, #ffffff 100%);
    height: 100%;
    background-attachment: fixed;
    background-repeat: no-repeat;
}
/* body styling */
body {
    font-family: poppins, sans-serif;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    
}
p {
    font-size: 20px;
    text-align: center;
    margin: 10px;
}
/* header */
header {
    text-align: center;
}

/* headings */
header {
    display: grid;
    place-items: center;
}

.homepage {
    width: 20ch;
    animation: typing 3s steps(40), blink .75s step-end infinite;
    white-space: nowrap;
    overflow: hidden;
    border-right: 6px solid;
    font-family: Varela Round, sans-serif;
    font-size: 2em;
}

@keyframes typing {
    0% {
        width: 0;
    }

    100% {
        width: 18ch;
    }
}

@keyframes blink {
    50% {
        border-right: 6px solid transparent;
    }
}

/* Nav bar */
nav {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(168, 168, 168, 0.5);
    margin: 20px;
    border-radius: 10px;
}
ul {
    display: flex;
    justify-content: center;
    padding: 10px;
}
li {
    list-style-type: none;
    padding: 10px;
    border-radius: 10px;
    margin-left: 20px;
}
/* link decorations */ 
a:link {
    text-decoration: none;
    color: black;
    font-size: 20px;
}
a:visited {
    text-decoration: none;
    color: rgb(255, 0, 0);
    font-size: 20px;
}
a:hover {
    text-decoration: none;
    color: rgba(67, 60, 255, 0.5);
    font-size: 20px;
}
/* nav button underline animations */
a {
    position: relative;
    font-family: poppins, sans-serif;
}
a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.1em;
	background-color: rgb(255, 0, 0);
	opacity: 0;
	transition: opacity 300ms, transform 300ms;
}
a:hover::after,
a:focus::after {
	opacity: 1;
	transform: translate3d(0, 0.2em, 0);
}
/* footer */
footer {
    margin: 10px;
    border-top: 3px solid;
    width: 100%;
    margin-top: auto;
}
h2.footer {
    font-family: poppins, sans-serif;
    font-size: 30px;
    color: black;
    display: inline-block;
}
.footer-icons {
    object-fit: none;
    object-position: center right;
    float: right;
    margin: auto;
    margin: 20px;
    align-items: center;
    display: inline-flex;
}
/* about me page skills styling */
.skills {
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
tr {
    text-align: center;
    line-height: 25px;
}
table {
    border-collapse: collapse;
    width: 30%;
    border: 1px solid black;
}
/* home page skill bar styling */
.skill-bar {
    /* width: 100%; */
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    margin: 10px;
}
progress {
    height: 20px;
    margin: 10px;
}
h3 {
    font-size: 20px;
    text-align: center;
    margin: 10px;
}
/* fun */
