
/*html {*/
/*    background-image:url(*/
/*    https://c4.wallpaperflare.com/wallpaper/327/43/821/colorful-simple-abstract-lines-wallpaper-preview.jpg);*/
/*    background-size: cover;*/
/*}*/

html{
    background-color: black;
}

/*fix unvisited link color*/
.navbar {
    list-style: none;
    width: 100%;
    text-align: left;
    display: flex;
    margin-right: 2rem;
    float: left;

}

.navbar a:link {
    display: block;
    font-size: 2.2rem;
    padding: 2.5rem;
    color: purple;
}

.navbar a:visited {
    color: yellow;
}

.navbar a:hover {
    background: hotpink;
}

/*remove margins and padding */
ul {
    padding: 0;
    margin: 0;
}

header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 10vh;
    color: pink;
}

header > h2 {
    font-family: Andale Mono, monospace;
    overflow: hidden;
    display: inline-block;
    border-right: .15em solid orange;
    white-space: nowrap;
    margin: 0 auto;
    font-size: 40px;
    font-weight: 300;
    letter-spacing: .15em;
    animation:
            typing 3s steps(30,end),
            blink-caret .75s step-end infinite;
}

@keyframes typing {
    from { max-width: 0 }
    to { max-width: 38%; }
}

.hobbies  {
    font-family: Andale Mono, monospace;
    justify-content: center;
    font-weight: 250;
    text-align: center;
    font-size: 1rem;
    color: white;
}

.container {
    margin: auto;
    width: 60%;
    border: 5px solid deeppink;
    padding: 10px;
    text-align: center;
}

img {
    border-radius: 8px;
}

footer {
    text-align: right;
    color: white;
    font-size: 20px;
    width: 100%;
    height : 60px;
    display: inline-block;
}