/* stylesheet. Use to keep style the same across all pages. */
head, .project {
    text-align: center;
}

body {
  font-size: 72;
}

.navbar {
    overflow: hidden; /* Hide overflow */
    background-color: #333; /* Dark background color */
  }
  
  /* Style the navigation bar links */
  .navbar a {
    float: left; /* Make sure that the links stay side-by-side */
    display: block; /* Change the display to block, for responsive reasons (see below) */
    color: white; /* White text color */
    text-align: center; /* Center the text */
    padding: 14px 20px; /* Add some padding */
    text-decoration: none; /* Remove underline */
  }
  
  /* Right-aligned link */
  .navbar a.right {
    float: right; /* Float a link to the right */
  }
  
  /* Change color on hover/mouse-over */
  .navbar a:hover {
    background-color: #ddd; /* Grey background color */
    color: black; /* Black text color */
  }

  .buttonlink {
    background:#333;
    color:white;
    text-align: center;
    padding: 1px 10px;
    text-decoration: none;
    /* overflow: hidden; */
  }
  .buttonlink a:hover {
    background-color: #ddd;
    color:black;
  }