:root {
  --bg-color: #000000;
  --text-color: #EEEEEE;
  --primary-color: #2C9080;
  --secondary-color: #2C9080;
  /* --secondary-color: #DD1545; */
}

::selection {
  color: var(--text-color);
  background-color: var(--primary-color);
}

@font-face {
  font-family: scp;
  font-display: swap;
  src: url(./fonts/SCP.ttf);
}

html {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: scp;
  font-size: small;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-color) var(--bg-color);
}

body {
  margin: 0px;
}

h2 {
  margin-top: 40px;
}

p {
  text-align: left;
}

strong {
  color: var(--primary-color);
  font-weight: bolder;
}
em {
  color: var(--primary-color);
  font-style: italic;
}
mark {
  color: var(--primary-color);
  font-weight: bold;
  background-color: unset;
}
small {
  font-size: xx-small;
}

a {
  color: var(--primary-color);
}
a:visited, a:visited>em {
  color: var(--secondary-color);
}

.center {
  text-align: center;
}
.nobr {
  display: inline;
}
.noMargin {
  margin: 0px !important;
}
.noBold {
  font-weight: normal !important;
}
.notIntractable {
  user-select: none;
  pointer-events: none;
}

.sideImage {
  z-index: -3;
  height: 400px;
  width: 400px;
  position: fixed;
  bottom: 0px;
  right: 0px;
}

.sideImageLink {
  z-index: -1;
  height: 400px;
  width: 400px;
  position: fixed;
  bottom: 0px;
  right: 0px;
}

.dim {
  z-index: -2;
  height: 400px;
  width: 400px;
  position: fixed;
  bottom: 0px;
  right: 0px;
}
.dimAll {
  background: rgba(0, 0, 0, 0.5);
}
.dimBorderTop {
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(255,255,255,0) 70%, rgba(0,0,0,1) 90%);
}
.dimBorderSide {
  background: rgb(0, 0, 0);
  background: linear-gradient(270deg, rgba(255,255,255,0) 70%, rgba(0,0,0,1) 100%);
}
.dimBorderCorner {
  background: rgb(0, 0, 0);
  background: radial-gradient(farthest-corner at 100% 100%, rgba(255,255,255,0) 0%, rgba(0,0,0,1) 80%);
}

.main {
  margin: 30px auto;
  max-width: 40vw;
  padding: 10px;
}
.tittle1 {
  margin-bottom: 40px;
}
.tittle2 {
  margin-bottom: 20px;
}

@media (max-width:1000px)  { .main { max-width: 50vw; margin-bottom: 400px; } }
@media (max-width:800px)   { .main { max-width: 60vw; margin-bottom: 400px; } }
@media (max-width:600px)   { .main { max-width: 70vw; margin-bottom: 400px; } }
@media (max-width:451px)   { .main { max-width: 80vw; margin-bottom: 400px; } }
