.top-strip {
    background-color: black;
    /* padding: 20px; */
    border-bottom: 1px solid #ccc;
    top: 0vh;
	bottom: 10vh;
  	text-align: center;
  	position: fixed;
  	z-index: 100;
  	height:  67px;
  	left: 0;
  	width: 100%;
  	font-weight: 300;
  	font-size: 1rem;
}

.bottom-strip {
    background-color: black;
    padding: 2vh;
    border-top: 1px solid #ccc;
    top: 92%;
	bottom: 0vh;
  	text-align: center;
  	position: fixed;
  	z-index: 100;
  	height: 9%;
  	left: 0;
  	width: 100%;
  	/* font-weight: 300; */
  	/* font-size: 1rem; */
    color:#fff
}

.bottom-strip p{
	font-size: small;
}

.horizontal-list {
    list-style-type: none; /* Remove default list bullets */
    padding: 0; /* Remove default padding */
    margin: 0; /* Remove default margin */
    display: flex; /* Use flexbox to make the list horizontal */
}

.horizontal-list li {
    margin-right: 20px; /* Add space between items */
}

.horizontal-list li:last-child {
    margin-right: 0; /* Remove right margin for the last item */
}
