@import url("https://fonts.googleapis.com/css2?family=Public+Sans&display=swap");

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  font-family: "Public Sans", sans-serif;
  font-size: 1.2rem;
  min-height: 100%;
}

.grid-container > * {
  box-shadow: -1px 1px 7px 0px rgba(0, 0, 0, 0); /*rgba(0, 0, 0, 0.75);*/
  border-radius: 4px;
  padding: 10px;
  text-align: center;
}

.header {
  grid-area: header;
  background-color: white; /*#85aedd;*/
}

.navbar {
  grid-area: navbar;
  background-color: white; /*#afd6af;*/
}

.sidebar {
  grid-area: sidebar;
  background-color: white; /*#fdcfcf;*/
}

.main {
  grid-area: main;
  background-color: white; /*#f5f5f5;*/
}

.footer {
  grid-area: footer;
  background-color: white; /*#8c96a0;*/
}

.grid-container {
  display: grid;
  gap: 10px;
  grid-template:
    "header"  100px
    "navbar"  5px
    "main"    auto
    "sidebar" 5px
    "footer"  45px;
}

@media (min-width: 320px) {
  .grid-container {
    grid-template:
      "header  header header" auto
      "navbar main sidebar"   auto	  
      "footer  footer footer" auto /
      5px  auto 5px;
  }
}


		.auto-style1 {
			text-align: left;
			font-family: "Public Sans", sans-serif;

		}

		.auto-style2 {
			text-align: center;
			font-family: "Public Sans", sans-serif;
		}
		
		.auto-style3 {
			font-family: "Public Sans", sans-serif;
			text-align:justify; 
		}
			
		.container
		{
			display: flex;
			flex-direction: column;
			align-items: center;
		}
		
		#my_camera
		{
			border: 1px solid black
		}
		
		.container button
		{
			width: 160px;
			padding: 12px;
			border: none;
			border-radius: 20px;
			cursor: pointer;
			font-size: 16px;
			background: #104285; /*sura OFICIAL black;*/
			color: white
			
		}
		
		.container > button
		{
			background: #2EB82E;
			color: white
		}		

		.container a button
		{
			background: #F0AD4E;
			color: white
		}	  
 
		.button_aceptar
		{
			padding: 12px;
			border: none;
			border-radius: 20px;
			cursor: pointer;
			font-size: 16px;
			background: green;
			color: white;			
		}

		.button_tomar_denuevo
		{
			padding: 12px;
			border: none;
			border-radius: 20px;
			cursor: pointer;
			font-size: 16px;
			background: orange;
			color: black;			
		}		


		.button_cancelar
		{
			padding: 12px;
			border: none;
			border-radius: 20px;
			cursor: pointer;
			font-size: 16px;
			background: red;
			color: white;			
		} 
  
}
