body {
  font-family: "Lato", sans-serif;
  color: #ffffff;
  background-color: #121212;
  margin: 0;
  padding: 0;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #333;
  padding: 2px;
  border-bottom: #555 1px solid;
}

.topbar2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #333;
  padding-bottom: 2px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  background-color: #036499;
  color: white;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.btn2 {
  background-color: #353;
}

.btn:hover {
  background-color: #0284c7;
  transform: scale(1.05);
}

ul.tab {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #444;
  display: flex;
  justify-content: center;
}

ul.tab li {
  margin: 0 5px;
}

ul.tab li a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  transition: background-color 0.3s;
  font-size: 17px;
}

ul.tab li a:hover {
  background-color: #555;
}

ul.tab li a.active {
  background-color: #666;
}

.tabcontent {
  display: flex;
  flex-flow: wrap;
  padding: 20px;
  animation: fadeEffect 1s;
  place-content: center;
}

@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

.tile {
  background: #1e1e26;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  display: grid;
  vertical-align: top;
  width: 220px;
  box-sizing: border-box;
  transition: transform 0.3s;
}

.projects {
  background: #1e261e;
}

.coding {
  background: #261e1e;
}

.tile:hover {
  transform: scale(1.05);
}

.tiletitle {
  font-size: 18px;
  margin-bottom: 10px;
  color: #03a9f4;
}

.tilelinks a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin: 2px 0;
  transition: color 0.3s;
}

.tilelinks a:hover {
  color: #03a9f4;
}
