html,body{
  margin:0px;
  paddding:0px;
  justify-content:center;
}
header{
    background-color: powderblue;
    height: 120px;
    line-height: 120px;
}
ul{
    list-style: none;
}
ul li{
    display: inline-block;
}
header nav {
    float: right;
}
header nav ul li a{
    padding-right: 30px;
    font-weight: bold;
    color: rgb(28, 0, 128);
    transition: all 0.5s ease-in;
    text-decoration: none;
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
header nav ul li a:hover{
    color:goldenrod;
}

/* services starts here */
h1{
    color:#80000b;
    text-align: center;
    font-family:-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygenans-serif;
    }
.content h2{
 color:teal;
 text-align: center;
text-align: center;
font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
hr{
    border: 2px solid teal;
    border-radius: 2px;
    margin-left: 30%;
    margin-right: 30%;
    
  }
/*img*/
.content img{
    display:block;
    margin-left: auto;
    margin-right: auto;
    width: 300px; 
    border: 5px solid rgb(32, 151, 155);    
}
/*review*/
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  .rev-section{
    margin: auto;
    padding: 0 1rem;
    max-width: 1100px;
    text-align: center;
  }
  
  .title{
    font-size: 2.0rem;
    text-transform: uppercase;
    color: rgb(50, 50, 50);
    margin-bottom: .5rem;
  }
  .note{
    font-size: 1.1rem;
    color: rgb(150, 150, 150);
    font-style: italic;
      color: rgb(68, 0, 255);
  
  }
  
  .reviews{
    margin: 2rem auto;
    display: inline-block;
    grid-template-columns: 1fr 1fr 1fr;
    flex: 1;
  }
  .review{
    margin: 0 1rem;
    min-width: 300px;
    flex: 1;
  }
  
  .head-review{
    margin: 1.75rem auto;
    width: 150px;
    height: 150px;
  }
 .head-review img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
  }
  
  .body-review{
    background-color: rgb(238, 238, 238) ;
    padding: 2.5rem;
    box-shadow: 2px 2px 10px 3px rgb(225, 225, 225);
  }
  .name-review{
    font-size: 1.5rem;
    color: rgb(50, 50, 50);
    margin-bottom: .25rem;
  }
  .place-review{
    color: red;
    font-style: italic;
  }
  .rating{
    color: rgb(253, 180, 42);
    margin: 1rem 0;
  }
  .desc-review{
    line-height: 1.5rem;
    letter-spacing: 1px;
    color: rgb(150, 150, 150);
  }
  
  @media (max-width: 678px){
    .review{
      margin-top: 1.5rem;
    }
  }
