html {
  width: 100%;
}

* {
  box-sizing: border-box;
}

body {
  width: 100%;
  display: grid;
  font-size: 1.1em;
  font-family: georgia;
  color: #0d131a;
  background-color: #eceff3;
}

.page {
  display: grid;
  width: 55%;
  margin-right: auto;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
}

.container-1c, .container-2c {
  display: grid;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  margin-top: auto;
  margin-bottom: auto;
  grid-gap: 0.5vw;
}

.container-1c {
  grid-template-columns: 1fr;
}

.container-2c {
  grid-template-columns: 1fr 1fr;
}

.box {
  width: 100%;
  float: center;
  margin: 0;
  padding: 1vw;
}

@media screen and (max-width: 1600px) {
  .page {
    width: 70%;
  }
}

@media screen and (max-width: 1024px) {
  .page {
    width: 90%;
  }
}

@media screen and (max-width: 600px) {
  .page {
    width: 96%;
  }
  .container-2c {
    grid-template-columns: 1fr;
  }
	.box {
		padding: 0.5vw;
	}
}

.t_center {
  text-align: center;
}

h1 {
  font-size: 1.8em;
  font-weight: 800;
  color: #ffb200;
  margin-top: 18px;
	margin-bottom: 6px;
	margin-left: 6px;
	margin-right: 6px;
  padding: 4px;
  text-align: left;
  text-decoration: none;
}

h2 {
  font-size: 1.5em;
  font-weight: 600;
  color: #ffb200;
  margin-top: 18px;
	margin-bottom: 6px;
	margin-left: 6px;
	margin-right: 6px;
  padding: 4px;
  text-align: left;
  text-decoration: none;
}

p {
	display: block;
	margin: 10px;
}

ul, ol {
	display: block;
	padding-left: 2em;
	padding-right: 1em;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-right: 10px;
	margin-left: 10px;
	margin-top: 5px;
	margin-bottom: 5px;
}

ul {
	list-style: none;
}

ul li::before {
	content: "\2022";
	color: #f9ae3e;
	margin-left: -1em;
	margin-right: 0.5em;
	font-weight: bold;
	font-size: 1.2em;
}

button {
  background-color: #f9ae3e;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1.05em;
  font-weight: 800;
  border: none;
  border-radius: 8px;
  color: #f5f0de;
  margin: 2px 2px;
  padding: 0.5em;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.4s;
}

button:hover {
  background-color: #d0c7a4;
  color: #746222;
}

button:active {
  background-color: #f9ae3e;
}

button.small {
  width: 35%;
}

button.big {
  width: 75%;
}

input {
	width: 100%;
	font-size: 85%;
	padding: 2%;
  margin: 3px 0 6px 0;
  color: #0d131a;
	background-color: #e5deca;
	border: none;
	border-radius: 8px;
  box-sizing: border-box;
}

select {
	width: 100%;
	font-size: 85%;
	padding: 2%;
  margin: 3px 0 6px 0;
	background-color: #cccccc;
	border: none;
	border-radius: 8px;
  box-sizing: border-box;
}

input[type=submit] {
	width: 45%;
	background-color: #f9ae3e;
  font-family: "Trebuchet MS", sans-serif;
  font-size: 1.05em;
	font-weight: 800;
	text-align: center;
  text-decoration: none;
	padding: 0.25em;
	color: #f5f0de;
	transition-duration: 0.3s;
}

input[type=submit]:hover, input[type=submit]:active {
  background-color: #d0c7a4;
  color: #746222;
}

label {
  padding: 2%;
	margin: 0;
  display: inline-block;
}

table {
  margin: 5% auto 5% auto;
  width: 96%;
  text-align: center;
  border-collapse: collapse;
}

img {
	display: block;
	margin-left: auto;
	margin-right: auto;
  margin-bottom: auto;
  margin-top: auto;
  padding: 5px;
}

img.big {
	width: 100%;
}

img.small {
	width: 50%;
}

img.icon {
  width: 64px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

a {
  text-decoration: none;
}
a:link {
  color: #ffb200;
  font-weight: 600;
}
a:visited{
  color: #ffb200;
  font-weight: 600;
}
a:hover {
  color: #25b4ff;
  font-weight: 600;
}
