html, body {
	height: fit-content;
	min-height: 100vh;
}

body {
	background-color: #4d4d4d;
	background-size: 100vw 100vh;
  background-attachment: fixed; 
	font-family: Helvetica, Arial, sans-serif;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	overflow: scroll;
	overflow-x: hidden;
}

#settingIcon {
  width: 40px;
  position: fixed;                          /*before settings menu*/
  top: 10px;
  right: 5px;
  z-index: 2;
}

#settings {
  transition: transform .4s ease-out;
  display: block;
  width: 400px;
  background: #95CDDB;
  height: 500px;
  position: fixed;
  top: 5%;
  right: -400px;
  border: #4a7eb5 double 9px;
  border-right: none;
  padding: 8px;                           /*in settings menu*/
  border-radius: 50px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  z-index: 2;
}
    
.settingChildren {  
  background-color: #5EBED8;
  border: solid 2px #4a7eb5;
  color: #0f5b91;
  border-radius: 50px;
  padding: 5px;
  margin: 10px 50px 10px 5px;
  font-weight: bold;
  max-width: 180px;
  font-size: 15px;
}

.colorChildren {   
  background-color: #95CDDB;
  border: solid 2px #4a7eb5;
  color: #0f5b91;
  padding: 2px;
  border-radius: 20px;
  margin: 0 0 4px 7px;
  font-size: 15px;
}
    

#settingTitle {
  margin-left: 120px;
  max-width: fit-content;                            
  margin-bottom: 30px;
  font-size: 35px;
}

#iframeDisplay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

#iframeSwitcher {
  width: 20px;
  height: 20px;
  position: fixed;                          /*before settings menu*/
  top: 10px;
  right: 50px;
  background-color: rgba(10, 196, 84, .2);
  border: solid 1px #7e0db7;
  border-radius: 20px;
  z-index: 3;
  display: none;
}
.backgroundEnabled {
  background-color: rgba(25, 25, 25, .9);  /* for messages*/
  border: solid black 1px;
  border-radius: 15px;
  padding: 4px;
}

#settingX {
  margin-right: 0px;
  margin-top: 0px;                             /*under settingX creation*/
  position: absolute;
  top: 0%;
  right: 0%;
  width: 40px;
}

  
  
  