html, body {
	height: 100%;
	margin: 0;
	user-select: none;
	background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
  scrollbar-width: none;
  background-color: dimgray;
}

@font-face {
	font-family: "Ferionapi";
	src: url('fonts/Feroniapi-MediumItalic.otf') format('opentype');
	font-weight: normal;
  font-style: normal;
}

@font-face {
	font-family: "Velvetyne";
	src: url('fonts/Velvelyne-Book.otf') format('opentype');
	font-weight: normal;
  font-style: normal;
}

@font-face {
	font-family: "Inter";
	src: url('fonts/Inter-Regular.ttf') format('truetype');
	font-weight: normal;
  font-style: normal;
}



h1 {
	margin-top: 0;
}

h2 {
	font-family: "Ferionapi";
	margin: 0 0 0.05em 0;
	font-weight: unset;
	-webkit-text-stroke: 1px;
	letter-spacing: -0.01rem;
}

p {
	font-family: "Inter";
	font-size: 16px;
	margin: 0;
	letter-spacing: -0.01rem;
	line-height: 1.3em;
}

button {
	/*display: block;*/
	font-family: "Inter";
  background-color: transparent;
  border: solid 1.5px black;
  border-radius: 2px;
  font-size: 1.1em;
  padding-inline: 0.5em;
  padding-top: 0.2em;
  padding-bottom: 0.3em;
  /*margin-block: 1.5em;*/
  color: black;
}

button:hover {
	color: #FEFDF9;
	background-color: black;
	cursor: pointer;
}

img {
	/*margin: 0;*/
}

form {
	/*margin-left: .5em;*/
	font-family: "Ferionapi";
	font-size: 1.35em;
	display: flex;
	flex-direction: row;
	gap: .25em;
	letter-spacing: -0.01rem;
}

input[type="radio"]:checked + label {
  text-decoration: underline;
  text-decoration-thickness: 0.075em;
  text-underline-offset: 0.2em;
}

label:hover {
	text-decoration: underline;
  text-decoration-thickness: 0.075em;
  text-underline-offset: 0.2em;
  cursor: pointer;
}

input {
	display: none;
}

.background {
	position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("img/000007.webp");
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: opacity .5s;
}

.background-active {
	opacity: 1;
}

.main-container {
	position: relative;
  /*top: 7em;*/
	width: 35%;
	height: 100%;
	/*left: 2em;*/
	padding: 1.5em;
	/*padding-top: 1em;*/
  box-sizing: border-box;
	background-color: #FEFDF9;
	overflow-y: scroll;
	border-radius: 2px;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.27);
	/*background-image: url("img/servilleta.jpg");*/
	-ms-overflow-style: none;
  scrollbar-width: none;
}

.fadeout {
	width: 35%;
  position: fixed;
  bottom: 0;
  left: 0;
	height: 5em;
	background: linear-gradient(0deg,rgba(254, 253, 249, 1) 0%, rgba(0, 0, 0, 0) 100%);
	border-radius: 2px;
}

#header {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 3em;
  /*display: none;*/
}

.imgtext-container {
	display: flex;
  align-items: center;
  gap: 0.5em;
  margin-block: .75em;
}

.ilus {
	width: 4em;
}

.separador {
	height: 2em;
}

#buttons-container {
	display: flex;
	margin-left: auto;
	gap: .5em;
	margin-top: -.3em;
}

#header p {
	text-align: end;
	margin-bottom: 0;
	width: 20%;
	margin-left: 1em;
}

#main-text {
	padding-right: 4em;
}

/*#bg-img {
	position: absolute;
	width: 100%;
}*/

#logo {
	width: 100px;
	z-index: 100;
/*  position: absolute;
  left: 2.5em;
  top: 2em;*/
/*  -webkit-filter: drop-shadow(0 0 20px #222);
  filter: drop-shadow(0 0 20px #222);*/
}

/* ==================================== MOBILE ====================================== */
/* =================================== PORTRAIT ===================================== */

@media (max-width: 700px) {

	.background {
		height: 40%;
		bottom: 0;
	}

	.main-container {
		width: 100%;
    height: 60%;
    padding: 1em;
	}

	.fadeout {
		width: 100%;
  	bottom: 40%;
	}

	.main-container p {
		font-size: 14px;
	}

	#header {
		margin-bottom: 1em;
	}

	#header p {
		width: 60%;
		letter-spacing: .01em;
	}

	.ilus {
		width: 3.5em;
	}

	.separador {
		height: 0;
	}

	#main-text {
		padding-right: 1em;
	}

	#logo {
		top: 1em;
		width: 5em;
	}
}

@media (max-width: 700px) and (orientation: landscape) {
	#logo {
		width: 50%;
	}
}