body
{
    background-color: black;
    font-family: 'Raleway', sans-serif;
    overflow-x: hidden;
}

.name
{
    color: #ffffff;
    font-size: 20pt;
    width: 40%;
    height: 10%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

a
{
    text-decoration: none;
    color: white;
}

a:visited
{
    text-decoration: none;
    color: white;
}

.burger
{
    padding: 20px;
    font-size: 40pt;
    transition: 0.5s;
}

.nav
{
   height: 100%;
   width: 0;
   position: fixed;
   z-index: 1;
   top: 0;
   left: 0;
   background-color: #1C1C1C;
   overflow-x: hidden;
   padding-top: 100px;
   transition: 0.5s;
}

.nav a
{
    display: block;
    padding: 40px;
    font-size: 22pt;
    transition: 0.5s;
}

.nav a:hover
{
    font-size: 25pt;
    transition: 0.5s;
}

.menu_item_bottom_border
{
    width: 200px;
    height: 2px;
    background-color: white;
    margin-left: 25px;
}

.nav .close
{
    position: absolute;
    top: 0;
    right: 1px;
    margin-left: 50px;
    font-size: 30pt;
}