html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

:root {
	--text-color: #aaaaaa;
	--link-color: #fff;
	--neon-color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  font-weight: 400;
}

body {
  background: radial-gradient(circle at center, #1e1e1e 30%, #111111 100%);
	margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;    
  gap: 1rem;               
  text-align: center;
  background-position: center center;
  height: 100vh;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
	max-width: 500px;
	width: 100%;
}

/*=============== Header CSS Start ===============*/

.header {
	padding-top: 1rem;
	margin-inline: 1rem;
}

.header__logo {
  height: 100%;
  width: auto;
}

.header__logo-image {
  height: 100%;
}

/*=============== Header CSS End  ===============*/

/*=============== Main CSS Start  ===============*/
.social__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0;
	margin-inline: 1rem;
  border-top: 2px solid var(--text-color);
  padding-top: 1rem;
}

.social__link {
  color: inherit;
  text-decoration: none;
  transition: color .3s;
}

.social__list .social__item .social__link i {
	color: var(--text-color);
	font-size: 4rem;
	transition: 0.2s ease-in-out;
  transition: color 0.3s;
}

.social__list .social__item .social__link:hover i {
	color: var(--link-color);
}

@media screen and (max-width: 499px) {
	.social__list .social__item .social__link i {
		font-size: 3rem;
	}
}

/*=============== Main CSS End  ===============*/