*{
    margin: 0%;
    padding: 0;
}
h1 {
font-family: "Press Start 2P", system-ui;   
}

header {
    background-color: #333;
    color: powderblue;
    padding: 10px 20px;
    border-bottom: solid 3px #f000f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1{
    font-size: 1.5em;
}
nav ul {
    list-style-type: none;
    display: flex;
    gap: 20px;
    font-size: .8em; 
}

nav a{
    color:yellowgreen
}

.profile-section {padding: 40px 0;}

.profile-card, .skill-card {background-color: rgb(33, 56, 75);
    border: 10px solid #f000f0;
    padding: 20px;
    width: 80%; 
    margin: auto; 
    display: flex; 
    gap: 30px; 
    justify-content: center; 
    align-items: center;
    box-shadow:8px 8px 8px #002fff}

.profile-pic {
    border-radius: 50%;
    width: 200px;
    height: 200px;
    border: 3px dotted #5900ff
}
.bio p{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 60%;}

.bio h2{
    color:rgb(166, 255, 0)
}
.bio p{
font-size: .7em;
margin-top: 15px;
color: #fff;
}
.skill-card {
    flex-direction: column;
}

.skill-card ul{
    list-style-type: "🖤";
    font-size: .8em;
    color: white;
}
footer {
    font-size: 2em;
    color:rgb(255, 0, 0);
    border-top: 3px solid red;
    margin-top: 40px;
    padding: 20px;
    text-align: center;
}