
body {
  overflow: hidden;
  margin-top:0vh;
}

.imageFrame {
  max-width: 100%;
  height: auto;
  margin-top:1vh;
}

.container {
  display: grid;
/* 
  height: 100vh;
 */
  height: 100%;
  width: 100%;
  
  grid-template-columns: 0.5fr 1fr 1fr 1fr;
  grid-template-rows: 0.1fr 0fr 0.0fr 0.0fr;
  grid-template-areas:
/* 
    "nav nav nav nav"
 */
    "sidebar main main main"
    "sidebar content1 content2 content3"
    "sidebar footer footer footer";
  grid-gap: 0.2rem;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  color: #ddd;
  text-align: center;
}

main {
  background: #fff;
  grid-area: main;
  border-radius: var(--main-radius);
  padding-top: var(--main-padding);
}

#sidebar {
  grid-area: sidebar;
  border-radius: var(--main-radius);
}

.tab {
  float: left;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 100%;
  margin-right: 1em;
  text-decoration: none;  
  text-decoration: none; color:black;
  height: auto;
  margin-top:4vh;
  overflow: auto;
}

.tab button {
  background-color: inherit;
  color: black;
  padding-top:    1.4vh;
  padding-bottom: 1.4vh;
  padding-right:  1.2vh;
  padding-left:   1.2vh;
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 1.2vw;
  height: auto;
  overflow: hidden;
}
.tab button.active {
  background-color: #ADD8E6;
}

.tab button:hover {
  background-color: #ddd;
}

.selector2 {
	padding-left: 20px;
	padding-right: 20px;
	margin:0px;
}
/* 
menu2.selector2 > span img {
	width="auto" 
	height="10vh"
	}
 */

@media only screen and (max-width: 750px) {
  .container {
    grid-template-columns: 1fr;
    grid-template-rows: 0.2fr 0.4fr 2.2fr 0.2fr 0fr 0fr 0fr;
    grid-template-areas:
/* 
      "nav"
 */
      "sidebar"
      "main"
      "content1"
      "content2"
      "content3"
      "footer";
  }

.tab button {
  background-color: inherit;
  color: black;
  padding-top: 0.2vw;
  padding-right: 1.4vw;
  padding-bottom: 0.2vw;
  padding-left: 1.4vw;
  width: 100%;
  border: none;
  outline: none;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  font-size: 2vw;
  height: auto;
  overflow: hidden;
}

.tab {
  float: center;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
  width: 85%;
  margin-right: 1em;
  text-decoration: none;  
  text-decoration: none; color:black;
  height: auto;
  margin-top:1vh;
  margin-left:2vh;
  overflow: auto;
}

.imageFrame {
  max-width: 100%;
  height: auto;
}
.selector2 {
	padding-left: 12px;
	padding-right: 12px;
	margin:0px;
}
}
