html,body {
  height: 100%;
  width: 100%;
}
body {
  padding: 0;
  margin: 0;
  font-family: 'IBM Plex Sans', sans-serif;
  font-weight: 800;
  font-size: .8em;
  background: linear-gradient( #A1A0C0,#686390 70%, #36316A );
}

#content{
  height: max(1.6vh,360px);
  /* width: max(50vh,256px); */
  aspect-ratio: 1/1;
  /* min-height: 360px; */
  background-color: #E4E4E4;
  position: absolute;
  display: flex;
  flex-direction: column;
  padding: 1.6rem .8rem 1.6rem .8rem;
  border-radius: 2em;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  gap: 8px;
  
}
#logo-group{
  /* width: 100%; */
  padding: 8px;
  flex-grow: 0;
  /* background-color: aliceblue; */
  gap: 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.vLayoutGroup_centered{
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

h1,h2,h3,h4,h5,h6,p{
  color: #424242;
  
  padding: 0 .8rem 0 .8rem;
  margin: .8rem;
  text-align: center;
}
h2{
  font-size: 1.24rem;
  font-weight: 700;
}
h3{
  font-size: 1.04rem;
  font-weight: 700;
}

#logo-item img{
  width: 80%;
}
#logo-group #logo-item{
  background-color: white;
  /* background-image: url('DIVE_logo.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80%; */
  height: max(8em,1.6em);
  aspect-ratio: 1/1;
  display: flex;
  border-radius: .8rem;
  align-items: center;
  justify-content: center;
}

button {
  background-color: #19114A;
  color: white;
  border: none;
  height: max(2.4vh,2.4em);
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1.24rem;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: .8rem;
}

.expand{
  flex-grow: 1;
}