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

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

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

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

p {
  font-size: 18px;
}

a:hover, input, textarea, select, button {
  -o-transition:.5s;
  -ms-transition:.5s;
  -moz-transition:.5s;
  -webkit-transition:.5s;
  transition:.5s;
   -webkit-appearance: none;
   font-family: 'Poppins', sans-serif;
}

/* --- Main styles --- */

.main {
	display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  text-align: center;
  border-top: 10px solid #8300CC;
}

.main h1 {
	font-size: 50px;
	font-weight: bold;
}

.links {
  margin-top: 30px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.kick, .twitch, .youtube, .x {
  padding: 15px 50px;
  display: inline-block;
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 22px;
  border-radius: 5px;
}

.kick {
  background-color: rgb(58, 211, 5);
  
}

.twitch {
  background-color: #6441a5;
}

.youtube {
   background-color: #FF0000;
}

.x {
   background-color: #14171A;
}

/* --- 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: 95%;
	}
}

/* --- Mobile styles --- */
@media only screen and (max-width: 800px) {

}
