header {
    width: 100%;
    z-index: 1;
    height: 4rem;
    color: white;
    top:0px;
    position: fixed;
    background-color:  #353535;
}

header nav {
    width: 100%;
    height: 100%;
    display: flex;
    font-size: 3rem;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

header nav a {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
}

.loggedin-user {
  color: blue;
  font-size: 2rem;
  font-weight: bold;
  text-decoration: none;
}

.name {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    text-decoration: none;
    margin-top: -2rem;
}

#name:hover, #name:active {
    color: #cf54a6;
}

header nav a:hover, header nav a:active {
    color: #cf54a6;
}

header a {
    font-size: 1rem;
    color: white;
    font-size: 0.5rem;
    margin-left: 3rem;
}

header p {
    color: white;
    font-size: 1rem;
    text-align: center;
}

header a:hover, header nav a:active {
    color: white;
}


.navbar {
    overflow: hidden;
    background-color: #333;
  }
  
  .navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }