@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fugaz+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Carter+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
*{
  font-family: "Carter One", system-ui;
    box-sizing: border-box;
    scroll-behavior: smooth; 
}
body{
  background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
}
section {
    padding: 200px 100px;
}

.main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.main h2 {
    color: #fff;
    font-size: 1.4em;
    font-weight: 500;
    text-shadow:0px 0px 5px white;
    padding-top: 5vh;
}

.main h2 span {
    display: inline-block;
    margin-top: 10px;
    color: #6902d5;
    font-size: 3em;
    font-weight: 600;
    text-shadow: 2px 2px 5px black;
}

.main h3 {
    color: #fff;
    font-size: 2em;
    font-weight: 700;
    letter-spacing: 1px;
    margin-top: 10px;
    margin-bottom: 30px;
    text-shadow: 0px 0px 5px #6902d5;
}

.main-btn {
    color: #fff;
    background-color: #6902d5;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    display: inline-block;
    padding: 0.9375em 2.1875em;
    letter-spacing: 1px;
    border-radius: 15px;
    margin-bottom: 40px;
    transition: 0.7s ease;
    box-shadow: 0px 0px 30px #6902d5;
}

.main-btn:hover {
    background-color: #fff;
    transform: scale(1.1);
    color: #6902d5;
    box-shadow: inset 0px 0px 30px #6902d5;
    text-shadow: 0px 0px 5px white;
}

.social-icons a {
    color: #fff;
    font-size: 1.7em;
    margin-right: 30px;
    transition: 0.3s ease-in-out;
}
.social-icons a:hover{
  color:#6902d5;
  text-shadow: 0px 0px 10px #6902d5;
}
.title {
    display: flex;
    justify-content: center;
    color: #6902d5;
    font-size: 2.2em;
    fةقont-weight: 800;
    margin-bottom: 30px;
}
.flex{
  display:flex;
}
.content {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
}
#contact,
#NEW{
  background-color: #151320;
}
.card {
    background-color: #151320;
    width: 21.25em;
    box-shadow: 5px 5px 10px black;
    border-radius: 10px;
    padding: 25px;
    margin: 15px;
    transition: 0.7s ease;
}

.card:hover {
    transform: scale(1.1);
    box-shadow: -5px -5px 10px #8c02f5;
}

.card .icon {
    color: #6902d5;
    font-size: 8em;
    text-align: center;
}

.info {
    text-align: center;
}

.info h3{
    color: #6902d5;
    font-size: 1.2em;
    font-weight: 700;
    margin: 10px;
}
.info p{
    color: white;
}
.games {
    background:url(https://i.ibb.co/RzMVN7s/38fe689608817e8b5d0544a5e3ab5d48.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact .icon{
    font-size: 4.5em;
}

.contact .info h3 {
    color: white;
}

.contact .info p {
    font-size: 1.5em;
}

@media (max-width:1023px){

    .title{
        font-size: 1.8em;
    }

    section{
        padding: 80px 20px;
    }

    .main-content h2{
        font-size: 1em;
    }

    .main-content h3{
        font-size: 1.6em;
    }

    .content{
        flex-direction: column;
        align-items: center;
    }

}

@media (max-width:641px){
    body{
        font-size: 12px;
    }

    .main-content h2{
        font-size: 0.8em;
    }

    .main-content h3{
        font-size: 1.4em;
    }
}

@media (max-width:300px){
    body{
        font-size: 10px;
     
    }
}
/* start header */


#cards{
display: grid;
grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
padding: 20px;
grid-gap:40px;
  flex-wrap: wrap;
  justify-content: center;
}
.profile {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 3rem;
  background-color: #1b2028;
  border-radius: 16px;
  position: relative;
  border: 3px solid transparent;
  background-clip: padding-box;
  text-align: center;
  color: #f1f3f3;
  background-image: linear-gradient(135deg, rgba(117, 46, 124, 0.35), rgba(115, 74, 88, 0.1) 15%, #1b2028 20%, #1b2028 100%);
}
.profile:after {
  content: "";
  display: block;
  top: -3px;
  left: -3px;
  bottom: -3px;
  right: -3px;
  z-index: -1;
  position: absolute;
  border-radius: 16px;
  background-image: linear-gradient(135deg, #752e7c, #734a58 20%, #1b2028 30%, #2c333e 100%);
}
.profile-image {
  border-radius: 50%;
  overflow: hidden;
  width: 190px;
  height: 190px;
  position: relative;
  filter: drop-shadow(2px 2px 24px #752e7c);
  transition: 0.5s ease-in-out;
}
.profile-image:hover{
  scale:1.1;
  filter: drop-shadow(2px 2px 24px #8c02f5);
}
.profile-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.profile-username {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

.profile-user-handle {
  color: #7d8396;
}

.profile-actions {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-actions > * {
  margin: 0 0.25rem;
}

.btn {
  border: 0;
  background-color: transparent;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1;
  transition: 0.15s ease;
}
.btn--primary {
  border-radius: 99em;
  background-image: linear-gradient(135deg, #770adc, #a519fe);
  color: #fff;
  padding: 0 1.375em;
  box-shadow: 1px 1px 10px #9a01fc;
  transition: 0.5s ease-in-out ;
  cursor: pointer;
  width: 220px;
  height: 70px;
  font-size: 150%;
  font-family: "Fugaz One", sans-serif;
}
.btn--primary:hover {
  scale: 1.1;
  background-color: white;
  color: #a519fe;
  box-shadow: 1px 1px 10px #FFF;
  background-image: linear-gradient(135deg, #ffffff, #d29cff);
}
@media (min-width: 766px) {
  #cards {
    grid-template-columns: repeat(3, minmax(350px, 1fr));
  }
}
@media (max-width: 766px) {
  #cards {
    margin-top: 40px;
    padding: 10px;
  }
  .profile {
    margin-top: 20px;
  }
}
.content {
  opacity: 0;
  transform: translateY(25px);
  transition: all 0.5s ease;
}

.content.visible {
  opacity: 1;
  transform: translateY(0);
}
.footer-container{
	max-width: 1170px;
	margin:auto;
}
.row{
	display: flex;
	flex-wrap: wrap;
}
ul{
	list-style: none;
}
.footer{
	background-color: #151320;
    padding: 70px 0;
    font-family: 'Poppins', sans-serif;
}
.footer-col{
   width: 25%;
   padding: 0 15px;
}
.footer-col h4{
	font-size: 18px;
	color: #ffffff;
	text-transform: capitalize;
	margin-bottom: 35px;
	font-weight: 500;
	position: relative;
}
.footer-col h4::before{
	content: '';
	position: absolute;
	left:0;
	bottom: -10px;
	background-color: #9908b4;
	height: 2px;
	box-sizing: border-box;
	width: 20px;
	transition: all 0.5s ease-in-out;
	border-radius: 40px;
}
.footer-col:hover h4::before {
  width: 100px;
  box-shadow: 0 0 10px #9908b4;
}
.footer-col:hover h4{
  text-shadow: 0 0 2px white;
}
.footer-col ul li:not(:last-child){
	margin-bottom: 10px;
}
.footer-col ul li a{
	font-size: 16px;
	text-transform: capitalize;
	color: #ffffff;
	text-decoration: none;
	font-weight: 300;
	color: #bbbbbb;
	display: block;
	transition: all 0.3s ease;
}
.footer-col ul li a:hover{
	color: #ffffff;
	padding-left: 8px;
}
.footer-col .social-links a{
	display: inline-block;
	height: 40px;
	width: 40px;
	background-color: rgba(255,255,255,0.2);
	margin:0 10px 10px 0;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	transition: all 0.5s ease;
	font-size: 20px;
	color:white;
}
.footer-col .social-links a:hover{
  background:white;
  color:#383d49;
}
/*responsive*/
@media(max-width: 767px){
  .footer-col{
    width: 50%;
    margin-bottom: 30px;
}
}
@media(max-width: 574px){
  .footer-col{
    width: 100%;
}
}