/* -------------------------------Works------------------------------------------------- */



#Works{      
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 3em ;
    width: 80%;
  }
  
  #Works h3{    
    font-size: 3em;
    margin:10px 30px;
  }
  
  #Works p{
    margin: 10px 3%;  
  }
  
  
  
  
  #Videogame1,
  #Todo1{
    display: flex;
    background-color: rgb(255, 255, 255);
    min-height: 300px;
    width: 65%;
    margin:3% 0;
    padding: 0;
    transition:  .8s;
    cursor: pointer;
  }
  #Videogame1:hover,
  #Todo1:hover{
    background-color: hsl(40,100%,60%);
  }
  
  #Todo1{
    float: right;
  }
  
  
  
  
  .containerbox{
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    background-color: rgb(255, 255, 255);
    margin:10px;
    
    border:2px solid black;
  }
  
  .text{
    flex:75%;
    display: flex;
    flex-direction: column;
    color: rgb(0, 0, 0);
    background-color: rgb(255, 255, 255);
    
  }
  
  
  
  .pic{
    flex: 25%;  
    display: flex;
    min-height: 250px;   
    border-left: 2px solid black;  
    
  }
  
  .picgame1{
    background-image: url('../img/Game_Alien_Invasion.jpg');
    -webkit-background-size: cover;
      -moz-background-size: cover;
    -o-background-size: cover;
    background-size:cover;    
    background-repeat: no-repeat; 
    background-position: center;
  }
  
  .pictodo1{
    background-image: url('../img/App_Todo1.jpg');
    -webkit-background-size: cover;
      -moz-background-size: cover;
    -o-background-size: cover;
    background-size:cover;    
    background-repeat: no-repeat; 
    background-position: center;
  }
  
  
  /* Responsive Works */
  
  @media (max-width:700px){
    #Works h3{
      font-size: 2em;
    }
    #Videogame1,
    #Todo1{
      width:90%;
    }
    
    
  }
  
  