.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #599664;
  display: flex;
}
.menu-items li { text-align: center; }

.menu-items li a { 
  display: block;
  color: #fff;
  padding: 14px 16px;
  text-decoration: none;
}
.menu-items li a:hover { background-color: #3DE35B; }

.navbar-container{
  display: flex;
  align-items: center;
}

.icon-btn{
  position: relative;
  display: inline-block;
  width: 80px;
  height: auto;

  text-decoration: none;
  cursor: pointer;
  overflow: hidden; /* ok; just keeps the image contained */
}

.icon-btn img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.icon-btn::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.icon-text{
  position: absolute;
  inset: 0;              /* ensures it anchors correctly */
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-weight: 600;

  z-index: 1;            /* IMPORTANT: above overlay */
}

.logo{
	display: block;
	margin: 0 auto;
	padding-top: 24px;
}

.header-gif-wrap{
  display: flex;
  justify-content: center; /* center horizontally */
}

.header-gif{
  display: block; /* avoids extra inline spacing */
  width: 300px;    /* adjust */
  height: auto;
}

.page-title{
  display: flex;
  justify-content: center;
  padding-top: 24px;
  color: #FFF;
}

.justified{
  padding: 24px;
  margin: 24px
}

.link-icon{
  width: 100px;
  height: auto;
}

.rockwool{
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: flex-start;
}

.rockwool-item{
  display: flex;
  flex-direction: column; /* caption under image */
  align-items: center;
}

.rockwool-pic{
  width: 350px;
  height: auto;
  display: block;
}

.rockwool-caption{
  margin-top: 8px;
  text-align: center;
  color: #fff;
}

body {
  background-color: #75BA81;
    color: #fff;}
  .logo {
}
