/* Add your CSS styles here! */
/* Practice different selectors:
   - Element selectors: h1, p, button
   - Class selectors: .verse, .chorus, .emphasis
   - ID selectors: #special-item
   - Descendant selectors: header p, .practice-area button
*/

.color-red {
  color: red;
}

.color-blue {
  color: blue;
}

.color-green {   
  color: rgb(78, 36, 4);
}
body {
  background-color: rgb(67, 39, 5);
  color: rgb(0, 0, 0);
  font-weight: 100;
}


  h1 {
    color: rgb(28, 103, 5);
    text-align: right;
    font-weight: 900;
    font-size: 80px;
    text-shadow: black;

  }

  h2 {
    color: rgb(132, 0, 255); 
    font-size: 50px;
    border-style: dashed;
    border-width: 100px;
    border-color: chartreuse;
    border-radius: 50px;
    

  }

  header {
    background-color: coral
  }

  footer {
    margin-top: 100px;
    color: blue;
    font-size: 400px;
  }
  
  img {
    width: 200px;
    height: 400px;
    border-color: aqua;
    border-radius: 60px;
    border-width: 50px;
    border-style: dotted;
  
  }

  section {
    color: rgb(255, 13, 219);
    font-size: 10px;
    font-weight: 400px;

  }

 
