@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: black;
  background-image: url('/fondo.jpg');
  padding: 40px;
  font-family: "Spectral", Sans-Serif;
}

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

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;
}

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

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

.grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0px 40px;
  margin: 40px 0px;
}

.albumes{
  display: flex;
  margin-left: 20px;
  margin-bottom: 20px;
  background: black;
  border: 15px solid transparent;
  border-image-source: url(/ImgMain/border.png);
  border-image-slice: 33%;
  border-image-repeat: round;
}

.portada{
  margin: 5px;
  width: 180px;
  height: 180px;
  align-self: center;
}

.info{
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.album-header{
  font-family: "Share Tech Mono";
  line-height: 0.9;
}

.rate{
  font-family: "Spectral";
  font-size: 20px;
}

.rate img{
  position: relative;
  bottom: -5px;
  width: 25px;
}

.review{
  font-size: 15px;
}


footer{
  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);
}