*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


body {
    background-color: #080808;
    color: #ffffff;
}

.responsive-image {
    width: 100%;
    height: auto;
}   

#header {
    width: 100%;
    height: 100vh;
    background-color: #080808;
    background-size:cover;
    background-position: center;
}

.logo {
    width: 150px;
    height: 150px;
}

.container {
    padding: 9px 9px;
}

.aboutMe {
    padding: 9px 9px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.header-text {
    text-align: center;
    color: #666666;
    font-size: 21px;
    margin-top: 9px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

nav ul li {
    display: inline-block;
    list-style: none;
    margin: 9px 21px;
}


nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    position: relative;
    transition: color 0.3s ease-in-out;
}
nav ul li a:hover {
    animation: flashText 1s ease-in-out forwards;
    color: #ffffff;
    text-decoration: none;
}
nav ul li a::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background-color: #ffffff;
    position: absolute;
    bottom: -5px;
    left: 0;
    bottom: -6px;
}

nav ul li a:hover::after {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    position: absolute;
}





@keyframes flashText {
    0% { color : #ffffff; }
    50% { color : #080800;} 
    100% { color : #ffffff; }
}
