@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 6. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  9. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* RFM */
html {
	font-size: 32px;
}

body {
	background-color: rgb(23, 24, 26);
	color: rgb(255, 252, 252);
	font-family: "Archivo", serif;
	font-optical-sizing: auto;
	font-weight: 100;
	font-style: normal;
	font-variation-settings: "wdth" 100;
}

nav {
	height: 84px;
	border-bottom: 1px solid rgb(128, 128, 128);
}

#logo {
	font-weight: bold;
	font-size: 1rem;
	text-align: center;
	height: 100%;
	padding-top: 20px;
}

#logo .content {
	vertical-align: middle;
	letter-spacing: 0.02rem;
}

#logo img {
	margin-right: 20px;
	display: inline;
	vertical-align: middle;
}

form label.needed::after {
	content: ' *';
	color: red;
}

.company-logo {
	background-color: #ffbe58;
	color: #333a41;
}

.basic-content {
	padding: 10%;
}

.p-content {
	padding: 5%;
}

.even {
	background-color: black;
}

#slogan, #forms {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr;
	justify-items: stretch;
	align-items: stretch;
	justify-content: center;
}

#company-info {
	display: block;
	font-size: 0.6rem;
}

#the-pitch {
	display: block;
	font-size: 0.6rem;
}

#the-sell {
	display: block;
	font-size: 0.6rem;
}

.item-list {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-evenly;
	align-items: start;
	align-content: space-evenly;
	margin-top: 16px;
	column-gap: 30px;
}

.item-list-stretch {
	justify-items: stretch;
	align-items: stretch;
}

.item-list-vert {
	display: flex;
	flex-flow: column nowrap;
	justify-content: stretch;
	align-content: space-evenly;
	align-items: stretch;
}

.item-list-vert div {
	padding: 16px;
}

.spaced {
	row-gap: 32px;
}

.verticle-center {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	align-content: center;
}

.float-right {
	text-align: right;
}

.center-text {
	text-align: center;
}

.bold {
	font-weight: bold;
}

.title {
	font-size: 1.5rem;
}

.description {
	font-size: 0.9rem;
}

.big-title {
	font-size: 2.5rem;
}

.big-description {
	font-size: 1rem;
}

.allcaps {
	text-transform: uppercase;
}

#forms {
	font-size: 0.7rem;
	padding: 20px;
}

#choice-cover {
	z-index: 10;
	display: none;
	position: fixed;
	background-color: rgba(0,0,0,0.9);
	inset: 0;
}

.btn {
	font-size: 0.8rem;
	display: inline-block;
	text-decoration: none;
	background-color: #ffbe58;
	color: #333a41;
	font-weight: bolder;
	padding: 2px 6px 2px 6px;
	margin: 0;
	border: 2px solid black;
	border-radius: 10px;
	cursor: pointer;
}

.submit-btn {
	cursor: pointer;
}

.flex-image {
	width: 50%;
}

#requests-open, #reports-open {
	cursor: pointer;
}

#requests-form, #reports-form {
	position: relative;
	max-height: 20px;
	overflow: hidden;
	transition: max-height 0.5s ease-in-out;
}

#requests-form::after, #reports-form::after {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	content: '';
	background-image: linear-gradient(180deg, transparent, rgb(23, 24, 26));
	max-height: 1000px;
	transition: max-height 0.5s ease-in-out;
}

#requests-form.open, #reports-form.open {
	max-height: 1000px;
}

#requests-form.open::after, #reports-form.open::after {
	max-height: 0px;
}

.fa-up-right-from-square {
	font-size: 0.5rem;
	transform: rotate(90deg);
}

#discord-choice {
	margin: 20px;
	display: none;
}

#server-response {
	margin: 20px;
	display: none;
}

@media (max-width: 1279px) {
	#slogan, #forms {
		display: flex;
		flex-direction: column;
		row-gap: 20px;
	}
	
	.item-list {
		flex-direction: column;
		row-gap: 20px;
	}
	
	.flex-image {
		width: 100%;
	}
}

@media (min-width: 1601px) {
	.auto-padding {
		padding-left: calc(50vw - 800px);
		padding-right: calc(50vw - 800px);
	}
}