:root {
  --main-color: #1C7293;
  --second-color: #ECC30B;
  --red-color: #C3423F;
  --white-color: #d4d4d4;
  --black-color: #0f0f0f;
  --second-black-color: #252525;
}

html, body {
  margin: 0;
  background: #0f0f0f;
}

.body {
  /* background: url("../f/bg3.jpg"); */
  background: #0f0f0f;
  background-position: center;
  background-size:cover;
  background-attachment: fixed;
}

@font-face {
  font-family: 'Spectral';
  src: url('../f/fonts/Spectral-Light.ttf');
}

@font-face {
  font-family: 'Montserrat';
  src: url('../f/fonts/Montserrat-Regular.ttf');
}

.main {
  min-height: 100vh;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mainWindow {
  border-radius: 2px;
  width: 95%;
  max-width: 800px;
  font-family: Montserrat;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1.1;
  line-height: 1.8;
  letter-spacing: 0.7px;
  text-align: justify;
  color: #d4d4d4;
  backdrop-filter: blur(1px);
}

.shadow {
  background: rgba(0,0,0,0.9);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 50px;
  box-sizing: border-box;
  overflow: auto;
  color: white;
  font-family: Montserrat;
  line-height: 1.8;
  letter-spacing: 0.7px;
}

input, select {
  height: 30px;
  font-size: 13px;
  text-align: center;
  font-weight: 900;
  border: gray 0px solid;
  border-radius: 5px;
  font-family: Montserrat;
  outline: 0;
  background: var(--white-color);
  color: var(--black-color);
}

button {
  background: var(--black-color);
  font-size: 10px;
  font-family: Montserrat;
  font-weight: 500;
  border: #0f0f0f 0px solid;
  cursor: pointer;
  color: white;
  border-radius: 10px;
  padding: 5px 15px;
  transition: 0.3s;
}

button:hover {
  background: #2c2c2c;
}

a {
  color: black;
  transition: 0.3s;
  &:hover {
    background: black;
    color: white;
  }
}

h1 {
  font-family: Spectral;
  margin-top: 0px;
  margin-bottom: 0px;
}
  
h2 {
  font-family: Spectral;
  font-size: 25px;
  margin-top: 0px;
  margin-bottom: 0px;
}

.drag-list {
  list-style: none;
  padding: 0;
}

.drag-item {
  background-color: #CC56FF;
  padding: 10px;
  margin-bottom: 5px;
  cursor: move;
}
