/*@import url("https://fonts.googleapis.com/css?family=Montserrat");*/
:root {
  --bg-color-light: #1B2735;
  --bg-color-dark: #090A0F;
  --txt-color-top: white;
  --txt-color-bottom: #38495a;
  --txt-color: #8299b0;
  --txt-color-lnk-hover: #e0e6eb;
  --txt-color-lnk-active: #3b4c5e;
  --shadow-color: rgba(206, 208, 211, 0.25);
  --shadow-color-hover: rgba(206, 208, 211, 0.5);
  --shadow-color-active: rgb(188, 202, 220);
}
body {
  margin:0;
  overflow: hidden; /*FF fix*/
  height: 100%;
  
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight:400;

//background: radial-gradient(#1d1f20, #000);
//background: hsl(210, 30%, 0%) radial-gradient(hsl(210, 30%, 20%), hsl(210, 30%, 0%));
  background: radial-gradient(ellipse at bottom, var(--bg-color-light) 0%, var(--bg-color-dark) 100%);
}

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}


/******* SHADOW *******/

.shadows {
  text-shadow: -5px 5px 30px var(--shadow-color);
  transition: all 0.25s ease-out;
  animation: animTitle 5s ease-out infinite alternate;
}

.shadows:hover {
    text-shadow: 5px 6px 20px var(--shadow-color-hover);
}

.shadows:active {
  text-shadow: 10px 6px 30px var(--shadow-color-active);
}

@keyframes animTitle {
  0% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {    
    opacity: 0.5;
  }
}


/******* TEXT *******/

.title {
  position: relative;

  text-transform: uppercase;
  user-select: none;
  
  font-size: 8vw;
  letter-spacing: 0.25em;
  color: white;
  background: -webkit-linear-gradient(var(--txt-color-top), var(--txt-color-bottom));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.copyright {
  display: flex;
  align-items: center;
  justify-content: center;

  margin-top: -2em;
  margin-bottom: 2em;
  
  user-select: none;
//  font-size: 0.8em;
//  font-size: 0.8vw;
  font-size: 8px;
  letter-spacing: 0.2vw;
  color: var(--txt-color);
}


/******* LINKS *******/

.copyright a::before {
  content: "•";
  display: inline-block;
  margin: 0px 1em;
}

.copyright a::after {
  content: "•";
  display: inline-block;
  margin: 0px 1em;
}

a, a:visited {
  text-decoration: none;
  color: var(--txt-color);
}

a:focus, a:hover {
  text-decoration: none;
  color: var(--txt-color-lnk-hover);
}

a:active {
  color: var(--txt-color-lnk-active);
}

/******* Nice Styles *******/

code {
  font-family: monospace; /*probable no porque ya lo pone el propio user agent*/
  display: inline-block;
  padding: 0 4px;
  color: #fff;
  border-radius: 4px;
  background-image: linear-gradient(.37turn,#061700,#00517c)
}

pre {
  display: block; /*probable no porque ya lo pone el propio user agent*/
  font-family: monospace; /*probable no porque ya lo pone el propio user agent*/
  white-space: pre; /*probable no porque ya lo pone el propio user agent*/
  margin: 1em 0px; /*probable no porque ya lo pone el propio user agent*/
}

pre code {
  margin: 10px 0;
  padding: 10px;
  display: block;
  overflow-x: auto;
  color: #fff;
  border-radius: 10px;
  background-image: linear-gradient(.37turn,#061700,#00517c)
}
/*
  a[href*="http"] {
  background: url('https://mdn.mozillademos.org/files/12982/external-link-52.png') no-repeat 100% 0;
  background-size: 16px 16px;
  padding-right: 19px;
}
*/
