﻿@import url('https://fonts.googleapis.com/css2?family=Monomaniac+One&family=Poppins:wght@300&display=swap');

body{
    background-color: #141414;
    font-family: 'Poppins';
}

nav{
    display: flex;
    justify-content: space-around;
    margin: 1%;
    align-items: center;
}

nav h1{
    color: #f0e48c;
}

nav ul{
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

nav ul li{
    text-decoration: none;
    margin-right: 25%;
    color: #585858;
    cursor: pointer;
}

nav ul > li{
    position: relative;
}

nav ul li a{
    text-decoration: none;
    color: #585858;
}

nav ul li a:hover{
    color: #FFFFFF;
}

nav ul li a:not(.active):after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #f0e48c;
    transition: width 0.2s ease-out;
 }
 
 nav ul li > a:hover::after {
    width: 100%;
 }   

nav ul .active{
    color: #FFFFFF;
    text-underline-offset: 5px; 
    text-decoration: underline;
    text-decoration-color: #f0e48c;
}

nav .head-info{
    align-items: center;
}

nav a{
    cursor: pointer;
    text-decoration: none;
    color: #FFFFFF;
}

header{
    display: flex;
    justify-content: center;
    color: #FFFFFF;
    margin: 0px;
}

header h2{
    color: #FFFFFF;
    font-size: 18px;
}

.wrapper {
    font-size: 10px;
  }
  
.typing-demo {
    width: 20ch;
    animation: typing 2s steps(22), blink .5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
    border-right: 3px solid;
    font-family: monospace;
    font-size: 2em;
    color: #f0e48c;
}
  
@keyframes typing {
    from {
      width: 0
    }
}
      
@keyframes blink {
    50% {
      border-color: transparent
    }
}

header h3{
    color: #FFFFFF;
    font-size: 16px;
}

header img{
    height: 225px;
    border: solid #f0e48c 5px;
    border-radius: 50%;
    margin-left: 50px;
}

header .head-all{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 550px
}
footer {
    text-align: center;
    padding: 1px;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
}