@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;800&display=swap');

*{
    font-family: 'Poppins', sans-serif;
}
div.navbar{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 0 170px;
    position:relative;
    top:0;
}
div.pagelink{
    display: flex;
    align-items: center;
}
div.pagelink a{
    padding: 16px 30px;
    color: antiquewhite;
    text-decoration: none;
    font-weight: 800;
}
div.pagelink a:hover, div.pagelink a.selected{
    color: rgb(220, 63, 82);
    border-style: solid;
    border-width: 0 0 3px 0;
    border-color: rgb(220, 63, 82);
}
div p.name{
    color: antiquewhite;
    font-weight: 800;
    font-size: 30px;
}
div.links{
    position: fixed;
    left:0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content:center;
}
div.links a{
    text-decoration: none;
    padding: 5px 20px;
    color: rgb(220, 63, 82);
    font-weight: 800;
    background-color: rgb(37, 34, 34);
}
div.links a:hover{
    color: antiquewhite;
    border-style: solid;
    border-width: 3px 0 0 0;
    border-color: antiquewhite;
    font-weight: 800;
}