/* --- Reset --- */
* { 
   box-sizing: border-box; 
   padding: 0px;
   margin: 0px;
}

html, body { 
   height: 100%; 
   width: 100%; 
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  background-color: #ebebee;
  color: black;
}

::-webkit-input-placeholder, :-moz-placeholder, ::-moz-placeholder, :-ms-input-placeholder { 
  color: #999;
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

p {
  font-size: 18px;
}

 a, input, textarea, select, button {
    transition: background-color 0.8s ease;
    -webkit-appearance: none;
    appearance: none;
    font-family: "Inter", sans-serif;
 }

.inner {
	max-width: 1400px;
	width: 100%;
	display: block;
	margin: 0 auto;
}

/* --- Main styles --- */
section {
  padding: 150px 0;
}

h1 {
  font-size: calc(20px + 3vw);
}

h1, h2 {
  margin-bottom: 5px;
}

a {
  color: #006699;
  font-weight: bold;
}

.btn {
  background-color: #0099cc;
  padding: 15px 30px;
  border-radius: 3px;
  font-size: 20px;
  font-weight: bold;
  outline: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  margin-top: 30px;
  color: white;
}

.btn:hover {
  background-color: #006699;
}





/* --- Dark mode --- */
@media (prefers-color-scheme: dark) {
	body {
		background-color: #2b2b2b;
		color: #ccc !important;
	}
}

/* Small desktop sizing issues --- */
@media only screen and (max-width: 1410px) {
	.inner {
		width: 85%;
	}
}

/* --- Mobile styles --- */
@media only screen and (max-width: 800px) {
	.inner {
		width: 100%;
		padding: 20px;
	}
}
