.header {
  padding: 80px; 
  text-align: center; 
  background: #1abc9c; 
  color: white; 
}

.header-reid {
  background: #0d9bc6; 
  color: white; 
}

.header h1 {
  font-size: 40px;
}

.navbar {
  overflow: hidden; 
  background-color: #333; 
}

.navbar a {
  float: left; 
  display: block; 
  color: white; 
  text-align: center;
  padding: 14px 20px; 
  text-decoration: none; 
}

.navbar a.right {
  float: right; 
}

.navbar a:hover {
  background-color: #ddd;
  color: black; 
}

* {
  box-sizing: border-box;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

.side {
  flex: 40%;
  background-color: #f1f1f1; 
  padding: 20px;
}

.main {
  flex: 60%; 
  background-color: white; 
  padding: 20px; 
}

.projectOne {
  flex: 50%; 
  background-color: #f1f1f1;
  padding: 20px;
}

.projectTwo {
  flex: 50%; 
  background-color: white; 
  padding: 20px; 
}
.projectOne img {
  height: 50%;
  width: 50%;
  object-fit: contain;
}

.projectTwo img {
  height: 50%;
  width: 50%;
  object-fit: contain;
}

.no-dots {
  list-style-type: none;
}

.project {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact p {
  margin: 0;
  margin-left: .5em;
}

.bit {
  display: flex; 
  padding-bottom: .5em;
}

