@import url('/assets/stylesheets/font.css');

:root {
	font-family: 'Segoe UI', sans-serif;
    background-color: #112811;
	background-image: linear-gradient(180deg, rgb(18, 40, 17) 0%, rgb(38, 94, 25) 100%);
	min-height: 100%;
    color: #d8e5d7;
	max-width: 35em;
	margin: auto;
	accent-color: #387b41;
	background-repeat: no-repeat;
  background-position: center center;
  background-attachment: fixed;
  text-shadow: #d7e5d97f 0px 0px 5px; 
}

::selection {
	background: #387b41aa;
}

h2,h3 {
	font-weight: 100;
}
	.center {
		text-align: center;	
        
	}
	.flex {
		display: flex;
		gap: 15px;
        justify-content: center;
	align-items: center;
	}
nav {
	display: flex;
	gap: 1em;
	justify-content: center;
	align-items: center;
	margin: 1em 0;
    font-weight: 100;
    opacity: 70%;
	text-shadow: none;
}
nav a {
	color: currentColor;
	text-decoration: none;
}
nav .link {
    padding-bottom: 2px;
    border-bottom: 1px solid currentcolor;
}
nav svg {
	transform: translate(0, 3px);
}

footer {
	font-size: 10px;
	opacity: 50%;
	text-align: center;
	margin-top: 15px;
	font-weight: 100;
	font-style: italic;
}

input {
	width: 95.5%;
	padding: 10px;
	margin-bottom: 5px;
	background: #387b3a55;
	border: 2px solid #387b3a55;
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Segoe UI', sans-serif;
}
select {
	width: 95.5%;
	padding: 5px;
	margin-bottom: 5px;
	background: #387b3a55;
	border: 2px solid #387b3a55;
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Segoe UI', sans-serif;
}
option {
	background: #387b3a;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Segoe UI', sans-serif;
}
input[type="submit"] {
	width: 120px;
	padding: 5px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.2s;
}
input[type="submit"]:hover {
	background: #387b3a88;
	border: 2px solid #387b3a88;
}
button {
	background: #387b3a55;
	border: 2px solid #387b3a55;
	width: 120px;
	padding: 5px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.2s;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Segoe UI', sans-serif;
}
button:hover {
	background: #387b3a88;
}
input[type="range"] {
	width: 150px;
}
textarea {
	padding: 10px;
	margin-bottom: 5px;
	background: #387b3a55;
	border: 2px solid #55387B55;
	border-radius: 10px;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Segoe UI', sans-serif;
	max-width: 95.5%;
	resize: vertical;
	font-size: 13px;
}
input[type="file"] {
	background: none;
	border: none;
	padding: none;
	text-align: center;
}

::file-selector-button {
	margin-bottom: 5px;
	background: #387b3a55;
	border: 2px solid #387b3a55;
	color: rgba(255, 255, 255, 0.8);
	font-family: 'Segoe UI', sans-serif;
	padding: 5px;
	padding-left: 10px;
	padding-right: 10px;
	border-radius: 10px;
	cursor: pointer;
	transition: 0.2s;
}
::file-selector-button:hover {
	background: #387b3a88;
	border: 2px solid #387b3a88;
}