body {
  background-color: white;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  transition: 0.5s;
}

.navBar {
  width: 100%;
  height: 75px;
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  overflow-x: hidden;
  background-color: hsl(180, 50%, 80%);
  border-bottom: 1px solid hsl(180, 50%, 30%);
  transition: 0.5s;
  display: flex;
  flex-direction: row;
}

.navBar div {
  width: 10%;
  background-repeat: no-repeat;
}

.logo {
  background-image: url("media/LSU Logo.png");
  background-size: 200%;
  background-position: 25% 50%;
}

.icon {
  text-align: center;
  background-size: 25%;
  background-position: 50% 20%;
  transition: 0.5s;
}

.icon:hover {
  background-color: hsl(186, 50%, 50%);
  background-size: 28%;
}

.home {
  background-image: url(media/HomeShadow.png);
}

.home:hover {
  background-image: url(media/HomeShadow.gif);
}

.coromon {
  background-image: url(media/CubzeroShadow.png);
}

.coromon:hover {
  background-image: url(media/CubzeroShadow.gif);
}

.navBar div h2 {
  margin: 0;
  color: hsl(180, 50%, 30%);
  position: relative;
  padding: 35% 0 0 0;
  font-size: 18px;
}

main {
  margin: 100px;
}

.resource {
  margin: 20px;
  padding: 10px;
  background-color: hsl(180, 50%, 80%);
  height: 50px;
  width: auto;
  border: 2px solid hsl(180, 50%, 30%);
  border-radius: 5px;
}

@media screen and (max-height: 450px) {
  .navBar div h2 {font-size: 12px;}
}