@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;700&display=swap");
* {
  box-sizing: border-box;
  font-family: "Quicksand", sans-serif;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  padding-top: 35px;
  background-color: white;
  color: #FFF;
  min-width: 320px;
}

#top {
  padding: 20px;
  background-color: #433d59;
}

h1 {
  margin: 0;
  text-align: center;
  font-size: 70px;
  line-height: 70px;
}
@media (max-width: 600px) {
  h1 {
    font-size: 50px;
    line-height: 50px;
  }
}

.subh1 {
  text-align: center;
  font-size: 30px;
  line-height: 30px;
  margin-top: 10px;
}
@media (max-width: 600px) {
  .subh1 {
    font-size: 20px;
    line-height: 20px;
  }
}

#header {
  width: 100%;
  height: auto;
  aspect-ratio: 1.75/0.8;
  background-image: url("../img/triangles.png");
  background-repeat: no-repeat;
  background-size: 80% 100%;
  background-position-x: center;
}

#menu {
  text-align: center;
}
#menu a.top {
  display: none;
}
#menu.scroll {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(67, 61, 89, 0.8);
  z-index: 99;
}
#menu.scroll a.top {
  display: inline-block;
}
#menu a {
  display: inline-block;
  font-size: 16px;
  line-height: 20px;
  background-color: rgb(89.78, 81.74, 119.26);
  color: #FFF;
  padding: 5px;
  padding-left: 8px;
  padding-right: 8px;
  margin: 3px;
  margin-left: 1px;
  margin-right: 1px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
}
#menu a:hover {
  background-color: rgb(140.46, 132.18, 170.82);
}

.textcontent {
  text-align: center;
  margin: 0;
  padding: 20px;
  padding-left: 10%;
  padding-right: 10%;
  background-color: #433d59;
}
@media (max-width: 600px) {
  .textcontent {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.textcontent p {
  text-align: left;
}
.textcontent p strong {
  color: rgb(208.9181818182, 159.7227272727, 213.2772727273);
}

p.none {
  text-align: center;
  color: yellow;
  font-size: 20px;
}
p.none::before {
  content: "😞 ";
}

p.nfo {
  font-size: 16px;
  margin: 0;
  color: #999;
}
p.nfo::before {
  content: "ℹ️ ";
}

a {
  color: rgb(226.0727272727, 195.1909090909, 228.8090909091);
}

i.extlink {
  display: inline-block;
  font-size: inherit;
  font-variant: normal;
  line-height: 1;
  width: 1em;
  height: 1em;
  text-align: center;
  vertical-align: middle;
  margin-bottom: 0.25em;
  background-image: url("../img/extlink-light.svg");
  background-size: contain;
}
i.extlink.light {
  background-image: url("../img/extlink-light.svg");
}
i.extlink.dark {
  background-image: url("../img/extlink-dark.svg");
}

.extlinks {
  font-size: 0;
}

.extlink {
  font-size: 16px;
  background-color: #924399;
  color: #FFF;
  line-height: 250%;
  padding: 5px;
  padding-left: 8px;
  padding-right: 8px;
  margin-left: 3px;
  margin-right: 3px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
}
.extlink:hover {
  background-color: rgb(174.6090909091, 88.7863636364, 182.2136363636);
}
@media (max-width: 600px) {
  .extlink span.long {
    display: none;
  }
}

h2 {
  padding: 0;
  padding-top: 10px;
  margin: 0;
}
h2:not(:first-of-type) {
  border-top: 3px solid white;
}

h3 {
  text-align: left;
}

#servers {
  background-color: #433d59;
  background-image: url("../img/paralax.png");
  background-size: 100%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
}
@media (max-width: 600px) {
  #servers {
    background-size: 400%;
  }
}
@media (max-width: 1200px) {
  #servers {
    background-size: 200%;
  }
}
#servers .textcontent {
  background-color: transparent;
}
#servers h2 {
  margin: 20px;
}
#servers p {
  text-align: center;
}
#servers a.server {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: rgba(67, 61, 89, 0.7);
  color: white;
  text-decoration: none;
  padding: 5px;
  margin: 20px;
  border-radius: 10px;
  width: 320px;
  height: 320px;
  font-size: 0;
  background-size: 80%;
  background-position: center 10px;
  background-repeat: no-repeat;
}
#servers a.server:hover {
  background-color: rgba(67, 61, 89, 0.9);
}
#servers a.server.nostat {
  background-size: 90%;
  background-position: center center;
}
#servers a.server .info {
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  font-size: 20px;
  line-height: 24px;
  margin: 0;
  margin-left: 3px;
  margin-right: 3px;
  padding: 3px;
  background-color: rgb(67, 61, 89);
  color: #cccccc;
  opacity: 0.7;
}
#servers a.server .info strong {
  color: white;
}
#servers a.server .info img {
  width: auto;
  height: 20px;
  vertical-align: bottom;
  margin-bottom: 2px;
}
#servers a.server.nostat .info {
  display: none;
}
#servers a.server .lastseen {
  display: none;
}
#servers a.server .owner {
  display: none;
}
#servers a.server .bandeau {
  position: absolute;
  text-align: center;
  left: -50%;
  top: calc(50% - 30px);
  color: white;
  width: 200%;
  line-height: 30px;
  font-size: 26px;
  opacity: 0.8;
  font-weight: bolder;
  background-color: black;
  transform: rotate(-20deg);
  transform-origin: center center;
  transition-property: transform, top, bottom, opacity;
  transition-duration: 0.5s;
  padding-top: 10px;
  padding-bottom: 10px;
}
#servers a.server:hover .bandeau {
  opacity: 1;
  top: 0;
  transform: rotate(0deg);
  transition-property: transform, top, bottom, opacity;
  transition-duration: 0.5s;
}
#servers a.server.cali {
  background-image: url("../img/calirp.webp");
}
#servers a.server.jc {
  background-image: url("../img/21jc.webp");
}
#servers a.server.failyv {
  background-image: url("../img/failyv.webp");
}
#servers a.server.soz {
  background-image: url("../img/soz.webp");
}
#servers a.server.reroll {
  background-image: url("../img/reroll.webp");
}
#servers a.server.sharkos {
  background-image: url("../img/sharkos.webp");
}
#servers a.server.vibe {
  background-image: url("../img/vibe.webp");
}
#servers a.server.global {
  background-image: url("../img/global.webp");
}

#global h2 {
  border: none;
}
#global p {
  font-size: 18px;
}
#global p strong {
  color: white;
  font-weight: bolder;
}
#global p.list {
  display: inline-block;
  width: auto 0;
  margin: 0;
  padding: 0;
  height: 110px;
  overflow: hidden;
}
#global a {
  list-style: none;
  text-align: left;
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-color: rgba(67, 61, 89, 0.7);
  color: white;
  text-decoration: none;
  padding: 5px;
  margin: 5px;
  border-radius: 7px;
  width: 160px;
  height: 100px;
  text-decoration: none;
  font-weight: bolder;
}
#global a .thumb {
  font-size: 0;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.25;
  filter: grayscale(1);
  transition-property: transform, filter, opacity;
  transition-duration: 0.5s;
}
#global a .top {
  font-weight: bolder;
  font-size: 20px;
  padding: 5px;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 3px;
  opacity: 0.8;
  transition-property: top, filter, opacity;
  transition-duration: 0.5s;
}
#global a .name {
  display: inline-block;
  text-align: center;
  position: absolute;
  width: 100%;
  font-size: 18px;
  line-height: 20px;
  top: calc(50% - 10px);
  left: 0;
  transition-property: top, filter, opacity;
  transition-duration: 0.5s;
}
#global a .viewer {
  padding: 5px;
  display: inline-block;
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: 14px;
  opacity: 0.66;
  transition-property: top, filter, opacity;
  transition-duration: 0.5s;
}
#global a:hover {
  background-color: rgba(67, 61, 89, 0.9);
}
#global a:hover .top, #global a:hover .viewer {
  opacity: 0;
  transition-property: top, filter, opacity;
  transition-duration: 0.5s;
}
#global a:hover .name {
  opacity: 1;
  top: 0;
  transition-property: top, filter, opacity;
  transition-duration: 0.5s;
}
#global a:hover .thumb {
  filter: grayscale(0);
  opacity: 1;
  transition-property: transform, filter, opacity;
  transition-duration: 0.5s;
}

.caracs h3 {
  margin-top: 0;
  padding-top: 0;
  margin-bottom: 5px;
  padding-bottom: 0;
}
.caracs p {
  margin: 0;
  margin-bottom: 10px;
}
.caracs img.illu {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
.caracs img.illu.right {
  float: right;
  margin-left: 10px;
}
@media (max-width: 600px) {
  .caracs img.illu {
    width: 100%;
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }
}

#droits {
  font-size: 75%;
  padding-left: 10%;
  padding-right: 10%;
  background-color: black;
  color: #CCC;
  padding-top: 10px;
  padding-bottom: 10px;
}

.lexique h4 {
  text-align: left;
  margin: 0;
  padding: 5px;
  background-color: rgb(21.44, 19.52, 28.48);
  border-radius: 5px;
}
.lexique p {
  border-radius: 5px;
  background-color: rgb(57.888, 52.704, 76.896);
  margin: 0;
  padding: 5px;
}
.lexique p:nth-child(odd) {
  background-color: rgb(48.776, 44.408, 64.792);
}
.lexique p label {
  display: table-cell;
  padding-right: 3px;
  color: rgb(208.9181818182, 159.7227272727, 213.2772727273);
  font-weight: bolder;
  width: 150px;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .lexique p label {
    display: block;
  }
}
.lexique p .txt {
  display: table-cell;
  vertical-align: middle;
}
@media (max-width: 600px) {
  .lexique p .txt {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */