/*
* Fonts are stored in the "SASS/Assets/Fonts" folder and the relative path to reach this resource starts from
* the "Stylesheet" folder.
* Example path: "./../SASS/Assets/Fonts/<font_file>"
*/
@font-face {
  font-family: OmegaFont;
  src: url("./../SASS/Assets/Fonts/Omega.woff2") format("woff2");
}
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes negative_rotation {
  from {
    transform: rotate(359deg);
  }
  to {
    transform: rotate(0deg);
  }
}
body {
  display: flex;
  flex-direction: column;
  margin: 0;
  min-width: 425px;
  min-height: 100vh;
}
body > main {
  flex: 1;
  background: #f3f8fc;
}

.center_position {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.OmegaFont {
  font-family: OmegaFont, serif;
  font-size: 310%;
  background: -webkit-linear-gradient(#8415A5, #E07DC6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  background: #FFFFFF;
  border-bottom: solid 1px #E0E0E0;
}
header > #top_header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header > #top_header > #logoWrapper {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
}
header > #top_header > #logoWrapper:hover > #logo_circle {
  animation: negative_rotation 6s infinite linear;
}
header > #top_header > #logoWrapper:hover > #logo_gear {
  animation: rotation 7s infinite linear;
}
header > #top_header > #logoWrapper > #logo_circle {
  position: absolute;
  width: 70px;
  height: auto;
}
header > #top_header > #logoWrapper > #logo_gear {
  position: relative;
  width: 70px;
  height: auto;
  margin-right: 20px;
}
header > #top_header > #logoWrapper > #logo_title {
  min-width: 350px;
}
header > #top_header > #menu_header {
  display: flex;
  flex-direction: row;
}
header > #top_header > #menu_header > .item {
  margin: 0 5px;
  border: solid 2px #E07DC6;
  border-radius: 100%;
  transition: 0.3s;
}
header > #top_header > #menu_header > .item > .flag {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border-image: -webkit-linear-gradient(#8415A5, #E07DC6) 1;
  /*font-size: 1.25rem;*/
  /*text-decoration: none;*/
  /*background: -webkit-linear-gradient(#8415A5, #E07DC6);*/
  /*-webkit-background-clip: text;*/
  /*-webkit-text-fill-color: transparent;*/
  /*font-family: "Arial", serif;*/
  /*font-weight: bold;*/
}
header > #top_header > #menu_header > .item:hover {
  border: solid 2px #8415A5;
  transition: 0.3s;
}

footer {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  background: #f3f8fc;
  border-top: solid 1px #B0B0B0;
}
footer > #copyright {
  padding: 5px 20px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  color: #B0B0B0;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  margin: 20px 50px;
  box-sizing: content-box;
  background: #FFFFFF;
  cursor: pointer;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transition: 0.3s;
}
.card:hover {
  box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
  transition: 0.3s;
}
.card > img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  object-position: center;
}
.card > span {
  margin-top: 20px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
}

.btn {
  width: fit-content;
  padding: 8px 15px;
  background: #8415A5;
  color: #FFFFFF;
  border: solid 2px #8415A5;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  background: white;
  color: #8415A5;
  transition: 0.3s;
}

.questionMark {
  display: inline-block;
  width: 13px;
  height: 13px;
  padding: 1px;
  background: #FFFFFF;
  border-radius: 100%;
  font-size: 0.8rem;
  text-align: center;
  color: #8415A5;
}

.carrousel {
  overflow: hidden;
  width: 300px;
  height: 400px;
}
.carrousel img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  object-position: center;
}

#home {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}
#home > #presentation-text {
  width: 70%;
  color: #40739e;
  font-size: 1.4rem;
  text-align: center;
}
#home > .carrousel {
  margin-top: 50px;
}
#home > .cta {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 70%;
  margin-top: 50px;
  padding: 50px 0;
}

#games #gameList {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  padding: 40px;
  box-sizing: border-box;
}

#contact > h1 {
  margin-top: 50px;
  color: #8415A5;
  text-align: center;
  font-family: Arial, sans-serif;
}
#contact > #contactForm {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 500px;
  margin-top: 50px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 6px;
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}
#contact > #contactForm > .field {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
}
#contact > #contactForm > .field > label {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #8415A5;
}
#contact > #contactForm > .field > label > .questionMark {
  margin-left: 5px;
}
#contact > #contactForm > .field > .input {
  margin-top: 5px;
  padding: 5px;
  background: #f3f8fc;
  color: #40739e;
  font-weight: bold;
  border: none;
  border-radius: 3px;
  resize: none;
}
#contact > #contactForm > .field > .input:focus {
  outline: none;
}
#contact > #contactForm > .submit {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  width: 100%;
  margin-top: 10px;
}

#error_404 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#error_404 > h1 {
  color: #f3f8fc;
  font-family: Arial, sans-serif;
  margin: 0;
  font-size: 7rem;
}
#error_404 > p {
  color: #f3f8fc;
  font-family: Arial, sans-serif;
  font-size: 1.6rem;
}
#error_404 > a {
  font-family: Arial, sans-serif;
  text-decoration: none;
}

.background_image_404 {
  background-image: url("./../SASS/Assets/Images/jpg/void.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

/*# sourceMappingURL=style.css.map */
