@font-face {
	font-family: 'Consolas';
	src: url('fonts/Consolas.eot');
	src: url('fonts/Consolas.woff') format('woff'), url('fonts/Consolas.ttf') format('truetype'), url('fonts/Consolas.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Consolas';
	src: url('fonts/Consolas-Bold.eot');
	src: url('fonts/Consolas-Bold.woff') format('woff'), url('fonts/Consolas-Bold.ttf') format('truetype'), url('fonts/Consolas-Bold.svg') format('svg');
	font-weight: bold;
	font-style: normal;
}

.violeta{    color:blueviolet;}
.amarillo{    color: yellow;}
.azul {    color:blue;}
.blanco {    color: #CBCBCB;}
.rojo {    color: red;}
.verde {    color: seagreen;}
.verde2 {    color:springgreen}
.coral {    color:coral;}
.lima {    color:lime}
.plum {    color:plum;}
.skyblue {    color: skyblue;}
.tomate {    color:tomato}
.aqua {    color:aqua;}

body {
    font-size:100%;
    margin: 0;
    font-family: Consolas;
    font-weight: 400;
    color: white;

    text-align: left;

    background: #FFFFFF;
    background: -webkit-radial-gradient(40vw 60vh, #595959 1%, #000000 50%);
    background: -moz-radial-gradient(bottom left, #8c8c8c, #000000);
    /* background: radial-gradient(to top right, #FFFFFF, #000000); */

    line-height: 1;
    max-width: 100%;
    overflow-x: hidden
  }

  .contenedor{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      
      background-image: url("images/background.png");
      background-size: contain;
      background-repeat: no-repeat;
      background-position:   top;

      height: 100%;
      width: 100%;
      
      font-size: 1.5em;
      
  }
  .contenedorWrapper{
    display: flex;
    margin: 1em auto;
    padding: 50px 50px;
    width: 70%;
    height: 60%;
    line-height: 1.4em;
    border: 1px solid #CBCBCB ;
    border-radius: 20px;
  }
  .lineContenido{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 10%;
  }
  .lineVertical {
    height: 100%;
    width: 1px; 
    margin: 1em auto;
    background-color: #CBCBCB;
  }
  .iconLineContenido {
      
      color: #CBCBCB;
      margin: 0.4em auto;
      text-decoration: none;
  }
  .iconLineTwiter:hover {
    color: #55ADEE 
  }
  .iconLineFacebook:hover {
    color: #4867AA 
  }
  .iconLineInstagram:hover {
    color: #D2308B
  }

  .iconCenter {
    font-size: 4em;
    color: #CBCBCB;
  }



  .zonaContenido{
    width: 100%;
  }

  .contenido{
    display: none;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin-left: 2vw;
    /* margin-right: 2vw; */
  }


  .menu{
    
    font-size: 0.7em;
    width: 100%;
    height: 10%;
    /* background-color: blue; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    

  }
.logo {
    background-image: url("images/logo.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position:   center left;
    height: 3em;
    width: 15%;
}
  .itemMenu{
      margin:0;
      text-decoration: none;
      color:#CBCBCB;
  }
  
  .lineMenu {
    height: 2px;
    width: 100%;
    background-color: #CBCBCB;
    display: none;
  }
  .imgJavascript {
    display: flex;
    
    background-image: url("images/jsLogo.png");
    background-size: 1.5em 1.5em;
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 100%;
}
.imgPython {
    display: flex;
    background-image: url("images/pythonLogo.png");
    background-size: 1.5em 1.5em;
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 100%;
}
.imgPhp {
    display: flex;
    justify-content: center;
    background-image: url("images/phpLogo.png");
    background-size: 2.5em 1.5em;
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 100%;
    width: 70px;
}
.imgJava {
    display: flex;
    justify-content: center;
    background-image: url("images/javaLogo.png");
    background-size: 1.5em 2.5em;
    background-repeat: no-repeat;
    background-position: bottom center;
    height: 100%;
    width: 70px;
}

.animationIn {
    animation: In 1s;
    animation-timing-function: linear;
    position: relative;
}
.animationOut {
    animation: Out 1s;
    animation-timing-function: linear;
    position: relative;
}


@keyframes In {
    0%   { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes Out {
    0%   { opacity: 1; }
	100% { opacity: 0; }
}

@media (max-width: 1200px) {
    body {
        font-size:80%;
    }

}

@media (max-width: 950px) {
    body {
        font-size:70%;
    }

}
@media (max-width: 850px) {
    body {
        font-size:65%;
    }
    .contenedorWrapper {
        padding: 25px 25px;
    }

}
@media (max-width: 750px) {
    body {
        font-size:50%;
    }
}
@media (max-width: 650px) {
    body {
        font-size:45%;
    }
}
@media (max-width: 550px) {
    body {
        font-size:40%;
    }
}
@media (max-width: 450px) {
    body {
        font-size:35%;
    }
}
@media (max-width: 400px) {
    body {
        font-size:30%;
    }
}



