/*STYLES SHEET */

body {
  font-family: Arial, Helvetica, sans-serif;
}

.header {
    padding: 20px;
    text-align: center;
    background: gainsboro;
    color: black;
}

.header h1 {
    font-size: 40px;
}

/* Style the top navigation bar */
.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 */
    color: white;
    padding: 5px;
  text-align: center; /* Center the text */
  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 */
}


.boxContainer {
    display: flex;
    flex-wrap: wrap;
}

.box {
    padding: 20px;
    width: 200px;
    height: 100x;
    border: 5px solid black;
    margin: 10px;
}

.box a {
    display: block;
    color: black;
    text-align: center;
    text-decoration: none;
}