/**************************/
/* VIDEO */
/**************************/
video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
}

/**************************/
/* HERO SECTION */
/**************************/
.hero-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-content-text 
{
	padding-top: 2rem;
}

.hero-content-logos {
  display: flex;
  justify-content: space-between;
}

.logo {
  height: 9rem;
  width: auto;
  transition: all 0.3s;
}
.logo:hover {
  scale: 1.05;
}

.hero-content-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 3rem;
}

/**************************/
/* PROJECTS SECTION */
/**************************/
.projects-center {
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.paragrowth,
.specteared,
.fimpossible {
  width: 17rem;
}
.paragrowth img,
.specteared img,
.fimpossible img {
  height: 25rem;
  width: auto;
  border-radius: 2%;
  transition: all 0.3s;
}
.paragrowth img:hover,
.specteared img:hover,
.fimpossible img:hover {
  scale: 1.03;
}

.card-title {
  padding: 1rem 0;
}

.card-paragraph {
  color: rgb(172, 172, 172);
  font-size: 0.8rem;
}

/*ONLY MOBILE DEVICES*/
.for-mobile {
  display: none;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgb(172, 172, 172);
}

/**************************/
/* MORE SECTION */
/**************************/
.more-center {
  position: absolute;
  top: 250%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.link {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
  transition: all 0.2s;
  padding-bottom: 2rem;
}
.link:hover {
  color: rgb(214, 62, 74);
}

.icon {
  height: 3rem;
}

/**************************/
/* ABOUT SECTION */
/**************************/
.about-center {
  position: absolute;
  top: 350%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about {
  max-width: 50rem;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.about-text {
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  padding-bottom: 5rem;
}

.mail-fimpossible-games,
.mail-fimpossible-creations {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/**************************/
/* FOOTER */
/**************************/
.footer {
  display: flex;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1rem;
  font-size: 0.7rem;
  font-weight: 200;
}
.footer .link {
  padding-bottom: 0;
}/*# sourceMappingURL=style.css.map */