body{
    margin: 0;
    display: grid;
    font-family: "Press Start 2P", system-ui;
    background-color: rgb(0, 0, 0);
    color: white;
}

.wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

header, footer{
    border: solid 5px;
}

.pfp{
    border-color: aliceblue;
    border: solid 5px;
}

.nav-bar{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 60px;
    width: 80%;
}

.content-card{
    display: flex;
}

footer{
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    text-align: center;
}

a:link{
    font-weight: bold;
    color: yellow;
    text-decoration: none;
}

a:visited{
    font-weight: bold;
    color: orange;
    text-decoration: none;
}

a:hover{
    font-weight: bold;
    color: yellow;
    text-decoration: underline;
}

.nav-bar a:link{
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-bar a:visited{
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-bar a:hover{
    font-weight: bold;
    color: yellow;
    text-decoration: underline;
}
