/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: 'Commissioner';
  background-repeat: repeat-y;
  background-attachment: scroll;
  background-size: 100%;
}

div {
  display: flex;
  overflow-wrap: break-word;
}

h1 h2 h3 {
  text-align: center;
  width: 100%;
}

hr {
  width: 100%;
}

img {
  height: auto;
  width: 100%;
  object-fit: contain;
}

/*IDS and CLASSES*/

.logo {
  width: 100%;
  height: auto;
  justify-content: center;
}

.logoimg {
  width: 35%;
}
.wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 2%;
  width: 96%;
  height: auto;
  align-items: flex-start;
  gap: 3%;
}

.left {
  height: auto;
  flex-direction: column;
  width: 20%;
  row-gap: 25px;
}

.right {
  height: auto;
  flex-direction: column;
  width: 70%;
  row-gap: 25px;
}

.section {
  display: flex;
  padding: 10px;
  flex-direction:column;
}
.directory .extra {
  display: flex;
  flex-direction: row;
  margin: 2%;
  gap: 1%;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

.primary .secondary .tertiary .quarternary .quinary .senary {
  display: flex;
  flex-direction: column;
  margin: 2%;
  gap: 1%;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
}

/*SPOILER*/

.spoiler .warning {
		background: #364042;
		text-align: center;
		color: #ffb300;
		border: 3px solid #ffb300;
		padding: 2%;
		margin: 2%;
		gap: 1%;
		flex-wrap: wrap;
		box-shadow: 5px 10px #ffb300;
	}

	.spoiler .warning h2 {
		font-size: 2rem;
	}
	
	.spoiler .warning hr {
		width: 100%;
		background-color: #ffb300;
		opacity: 1;
		height: 1px;
		border: none;
	}

	.spoiler .warning button {
		display: flex;
		flex-direction: row;
		background-color: #ffb300;
		border: 3px solid #ffb300;
		color: #356042;
		padding: 15px 32px;
		text-align: center;
		text-decoration: none;
		font-size: 16px;
		margin: 4px auto;
		cursor: pointer;
		border-radius: 20px;
		box-shadow: 2px 5px #364042;
		width: 30%;
		justify-content: center;
	}

	.spoiler.secret .content,
	.spoiler.shown .warning {
		display: none;
	}

	.spoiler.shown .content {
		display: flex;
		flex-direction: column;
	}

	.spoiler.secret {
		display: block;	
		width: 100%;
		height: 100%
	}
	
	