html {
  font-family: "Montserrat", sans-serif;
  color: #222541;
  
}

body {
  background-color: #deeafe;
  padding: 0;
  margin: 0;
  background-image: url('/images/backgrounds/checker.png');
  background-size: 105px;
  background-attachment: fixed;
}

main:not(.unstyled) {
  display: block;
  max-width: 950px;
  border-right: 1px solid;
  border-left: 1px solid;
  border-color: #222a38;
  margin: auto;
}

*, *::after, *::before {
  box-sizing: border-box;
}

header {
  display: flex;
  flex-direction: column;
}

.header__logoline {
  display: flex;
  justify-content: flex-end;
  padding: 30px 50px;
  background-image: url('/images/header.png');
  background-size: cover;
  background-position-y: 78%;
}

.header__logoline h1 {
  color: #222a38 !important;
  font-size: 35px;
  margin: 0;
  paint-order: stroke fill;
  -webkit-text-stroke: 6px white;
  -webkit-text-fill-color: #222a38;
  
}

.header__menu {
  background-color: #222a38;
}

.menu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 10px 50px;
  justify-content: flex-end;
}

.menu li a {
  color: white !important;
  font-weight: 500;
}

a {
  text-decoration: none;
}

a:not(.unstyled) {
  color: #6B7BF1;
  position: relative;
}

a:not(.unstyled):visited {
  color: #7A91FF;
  text-decoration: none;
}

a:not(.unstyled):hover::before {
  content: '[';
  position: absolute;
  left: -6px;
}

a:not(.unstyled):hover::after {
  content: ']';
  position: absolute;
  right: -6px;
}

.main__flex {
  display: flex;
  min-height: 500px;
  background-color: #f4f8ff;
}

.sidebar {
  flex: 0 0 180px;
  border-right: 1px solid #222541;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.sidebar * {
  position: relative;
  z-index: 10;
}

.content {
  padding: 20px;
}

.content h1 {
  font-size: 30px;
  margin-top: 0;
}


.sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/images/icon.png');
  opacity: .2;
  z-index: 0;
  background-position: 38% 70%;
}


footer {
  background-color: #222a38;
}

.footer__logo h1 {
  margin: 0;
  padding: 30px 50px;
  color: white;
  padding-bottom: 0;
  font-size: 28px;
}

.menu--footer ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 10px 50px;
  justify-content: flex-start;
  padding-top: 10px;
}

.menu--footer li a {
  color: white !important;
  font-weight: 500;
}

footer p {
  color: white;
  padding: 10px 50px;
  margin: 0;
}

.buttonline {
  padding: 10px 50px 30px;
}

.nothing {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nothing h1 {
    margin-top: 5px;
}

.footer__logo {
  padding-left: 50px;
  padding-top: 30px;
}

body:has(.coming) {
  background-color: black;
}

.coming {
	text-align: center;
	font-family: Courier New;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: fixed;
	width: 100vw;
	height: 100vh;
	color: black;
}

.hidden {
	display: none !important;
}