/* Add Question 1 CSS below: */
.color-word {
    color:red;
  }
  
  /* Add Question 2 CSS below: */
  #gradient {
    background-image: linear-gradient(to right, red,orange,yellow,green,blue,indigo,violet);
  }
  
  .description {
    color:red;
  }
  /* Question 3/4 */
  .highlight-me{
    background-color: yellow;
    color:black;
    font-size:16px;
  }
  
  /* Question 5 */
  .side-by-side{
    display:inline-block;
    width:120px;
    height:70px;
    background-color:black;
    margin:10px;
  }
  
  /* Question 6 */
  .gone{
    display: none;
    background-color:lightgrey;
    color:grey;
    font-size:30px;
    width:100px;
  }
  
  /* Question 7 */
  .increase-orange{
    padding: 30%;
    background-color:orange;
    display:inline-block;
  }
  
  /* Question 8 */
  .separate-me{
    margin: 5%;
    background-color:green;
    width:200px;
    height:20px;
  }
  
  /* Question 9 */
  .user-friendly{
    font-size: 16px;
    padding: 10px;
    margin: 5%;
    border-radius: 100%;
    background-color:rgb(255, 134, 134);
    color:white;
    text-decoration:none;
  }
  
  
  /* Question 10 */
  .static{
    line-height: 100px;
    display: block;
    background-color:#00ffff;
    text-align:center;
    width:100px;
    height:100px;
  }
  .center-me{
    display:inline-block;
  }
  
  /* Question 11 */
  .left-upward{
    margin-left: 50px;
    margin-bottom: 50px;
    width:200px;
    height:60px;
    background-color:green;
  }
  
  /* Question 12 */
  .fixed-btn{
    position: sticky;
    display: block;
    top: 10px;
    right: 10px;
    background-color:pink;
    width:130px;
    padding:20px;
    text-align:center;
    text-decoration:none;
    color:black;
  }
  
  /* Question 13 */
  .position-20-40{
    top: 20px;
    left: 40px;
    background-color:#bb00ff;
    width:200px;
    height:100px;
  }
  
  /* Question 14 */
  .dont-move{
    width:200px;
    height:50px;
    background-color:grey;
    position: relative;
  }
  .move-me{
    width:220px;
    height:60px;
    background-color:blue;
    position: relative;
    left: -30px;
    top: -30px;
  }
  
  /* Question 15 */
  /*
  .dont-move{
    display: inline-block;
    width:200px;
    height:50px;
    background-color:grey;
    position: relative;
  }
  .move-me{
    display: inline-block;
    width:220px;
    height:60px;
    background-color:blue;
    position: relative;
    left: -30px;
    top: -30px;
  }
 */
  /* Question 16 */
  .larger-div{
    background-color:red;
    width:260px;
    height:260px;
  }
  .smaller-div{
    position: relative;
    background-color:purple;
    width:200px;
    height:200px;
    bottom: 230px;
    left: 30px;
  }
  
  /* Question 17 */
  .parent-div{
    width:300px;
    height:300px;
    position:relative;
    background-color:lightgrey;
  }
  .child-div{
    background-color:#4287f5;
    width:50px;
    height:50px;
    position:absolute;
    bottom:125px;
    right:125px;
  }
  
  /* Question 18 */
  .stripe {
    display: flex;
    flex-direction: column;
    margin-bottom: 5px;
    width: 100px;
    height: 10px;
    background-color: #32a852;
  }

  /* Question 19 */
  .stripe {
    flex-direction: row;
  }

  /* Question 20 */
  .replicate-me{
    background-color:lightgrey;
    width:400px;
    height:300px;
    position:relative;
  }
  .replicate-me div{
    width:120px;
    height:120px;
    position:absolute;
  }
  .red-square{
    background-color:#f0002c;
    left: 20px;
    top: 20px;
  }
  .pink-square{
    background-color:#e0abd8;
    left: 60px;
    top: 90px;
  }
  .yellow-square{
    background-color:#f0c800;

    left: 120px;
    top: 120px;
  }
  .green-square{
    background-color:#32a852;
    left: 150px;
    top: 55px;
  }
  .blue-square{
    background-color:#0486d6;
    left: 170px;
    top: 90px;
  }

  /*Question 22*/
  .long-block {
    background-color:#393f49;
    position: relative;
    top: 100px;
    width: 40px;
    height: 100px;
  }

  .head {
    background-color: #393f49;
    position: relative;
    width: 20px;
    height: 30px;
    top: -20px;
    left: 9.5px;
  }
  
  .sharp {
    background-color: #393f49;
    position: relative;
    width: 5px;
    height: 30px;
    top:-80px;
    left: 17px;
  }

  
  /* Default Styles */
  
  p{
    color:grey;
    font-size:14px;
    max-width:460px;
  }
  
  body{
    padding-bottom:200px;
  }
  
  .img-ref{
    width:400px;
  }
  
  h3{
    text-decoration:underline;
  }

