/*
Font-face browser support
eot: IE9 Compat Modes
eot?#iefix: IE6-IE8
woff: Pretty Modern Browsers
woff2: Super Modern Browsers (static and variable)
truetype: Safari, Android, iOS 4.2+
svg: legacy iOS 4.1-
*/
@font-face {
  font-family: InterVariable;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/ressources/fonts/inter/InterVariable.woff2") format('woff2');
}
@font-face {
  font-family: InterVariable;
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url("/ressources/fonts/inter/InterVariable-Italic.woff2") format('woff2');
}
/*
  Main style
 */
:root {
  font-family: InterVariable, sans-serif;
  font-size: medium;
  font-weight: normal;
  color: black;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
}

header {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-bottom: solid 4px #528990;
  padding: 10px;
}

footer {
  background: #528990;
  border-top: solid 2px #0b0b0b;
  width: 100%;
  height: 100px;
  position: fixed;
  bottom: 0;
  left: 0;
}

.content {
  padding-bottom: 100px; /* Height of the footer element */
}

.warning {
  background-image: linear-gradient(rgba(255,255,255,.6), rgba(255,255,255,.6)), url("/ressources/images/cone-broken.webp");
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center;
  background-blend-mode: lighten;
  background-size: auto 100%;
}
/*
  Spacing
 */
.pt-1 {
  padding-top: 1%;
}
.pt-2 {
  padding-top: 2%;
}
.pt-3 {
  padding-top: 3%;
}
.pt-4 {
  padding-top: 4%;
}
.pt-5 {
  padding-top: 5%;
}

/*
  Font related
 */
.center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.fs-medium {
  font-size: medium;
}

.fs-large {
  font-size: large;
}

.fs-larger {
  font-size: larger;
}

.fs-xlarger {
  font-size: x-large;
}

.fs-xxlarger {
  font-size: xx-large;
}

.fs-xxxlarger {
  font-size: xxx-large;
}

.color-black {
  color: black !important;
}

.color-white {
  color: #f8f9fa !important;
}

.color-aurora {
  color: #528990 !important;
}

.text-shadow-black {
  text-shadow: 1px 1px 1px #000000;
}

.text-shadow {
  text-shadow: -1px -1px 1px #fff, 1px 1px 1px #000000;
}

.text-shadow-light {
  text-shadow: -1px -1px 1px #fff, 1px 1px 1px #a5a5a5;
}

.link-color-override a:link,
.link-color-override a:visited,
.link-color-override a:active {
  color: #528990 !important;
}

.link-color-override-white a:link,
.link-color-override-white a:visited,
.link-color-override-white a:active {
  color: #f8f9fa !important;
}

.button {
  display: inline-block;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  background-color: #528990;
  border-radius: 6px;
  outline: none;
  transition: 0.3s;
  box-shadow: 1px 1px 1px black;
}

.button:hover,
.button:focus {
  background-color: #c2c7c7;
}

a.button {
  color: #f8f9fa !important;
}

div.maintenance {
  display: flex;
  justify-content: center;
  padding: 20px;
}

img.maintenance {
  width: 10%;
}