@font-face{
  font-family: "Special Elite";
  src: url("/fonts/SpecialElite-Regular.ttf");
}

@font-face{
  font-family: "Spectral";
  src: url("/fonts/Spectral-Regular.ttf");
  font-weight: 400;
}

@font-face{
  font-family: "Spectral";
  src: url("/fonts/Spectral-Bold.ttf");
  font-weight: 700;
}

@font-face{
  font-family: "Share Tech Mono";
  src: url("/fonts/ShareTechMono-Regular.ttf");
  font-weight: 400;
}


/* Colores 
rojo: #701705
rojo obscuro: #400B0B
gris #919191

font-family: "Special Elite";
font-family: "Share Tech Mono";
font-family: "Spectral", Sans-Serif;
*/

body{
  background-color: black;
  padding: 40px; 
  background-image: url('/ImgMain/fondo.jpg');
  color: #919191;
}

body::selection{
  background-color: #4D0B0B;
}

.cajas{
  background: black;
  border: 20px solid transparent;
  border-image-source: url(/ImgMain/border.png);
  border-image-slice: 33%;
  border-image-repeat: round;
}


header{
  user-select: none;
  position: relative;
  top: 40px;
  left: 50px;
  width: 520px;
  pointer-events: none;
}

nav{
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  margin-left: 60px;
  width: 50%;
  height: 80px;
}

nav a{
  color: white;
  font-family: "Special Elite";
  text-align: center;
  text-decoration: none;
  font-size: 25px;
}

.container{
  color: #cfcfcf;
  width: 1400px;
}

.grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 50px 100px 0px 100px;
  gap: 20px;
  color: #919191;
}

.intereses{
  display: flex;
  background: black;
  border: 18px solid transparent;
  border-image-source: url(/ImgMain/border.png);
  border-image-slice: 33%;
  border-image-repeat: round;
  text-decoration: none;
  color: #919191;
}

.separador{
  grid-column: span 2;
  background: black;
  border: 18px solid transparent;
  border-image-source: url(/ImgMain/border.png);
  border-image-slice: 33%;
  border-image-repeat: round;
  width: 70%;
  margin: 0px auto;
  
}

.foto{
  width: 200px;
  height: 200px;
}

.titulos{
  font-family: "Share Tech Mono";
  margin: auto;
  font-size: 35px;
  text-align: center;
}


footer{
  background: black;
  border: 18px solid transparent;
  border-image-source: url(/ImgMain/border.png);
  border-image-slice: 33%;
  border-image-repeat: round;
  text-decoration: none;
  text-align: center;
  margin: 10px;
  height: 25px;
}

.ornamentos1{
  pointer-events: none;
  position: fixed;
  right: 0;
  bottom: 0;
  width: 350px;
  z-index: 1;
}

.ornamentos2{
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 350px;
  transform: rotate(-180deg);
}






