/*@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;1,300&display=swap');*/

*{
  padding: 0;
  margin: 0;
  
}

.body
{
  background: dimgray;
  
}

h1,h3, p
{
  font-size: 18px;
  color: red;
}

.about-1
{
  width: 80%;
  margin-top: 20px;
  margin-left: 10%;
  padding: 5px;
  background-color: #f95f5f;
}

.about-1 h1
{
  text-align: center;
  color: black;
  font-weight: 100;
}

.about-1 p
{
  text-align: center;
  padding: 30px;
  color: #fff;
}

.about-item
{
  height: 300px;
  margin-bottom: 20px;
  margin-top: 40px;
  background-color: white;
  padding: 80px, 30px;
  box-shadow: 0 0 9px rgba(0, 0, 0, .6);
}

.about-item i
{
  font-size: 43px;
  margin: 0;
}

.about-item h3
{
  font-size: 25px;
  margin-bottom: 10px;
}

.about-item hr
{
  width: 46px;
  height: 3px;
  background-color: #5fbff9;
  margin: 0 auto;
  border: none;
}

.about-item p
{
  margin-top: 20px;
}

.about-item:hover
{
  background-color: #5fbff9;
  cursor: pointer;
}

.about-item:hover i,
.about-item:hover h3,
.about-item:hover p
{
  color: #fff;
}

.about-item:hover hr
{
  background-color: #fff;
}

.about-item:hover i
{
  transform: translateY(-20px);
}

.about-item:hover i,
.about-item:hover h3,
.about-item:hover hr
{
  transition: all 400ms ease-in-out;
}

footer
{
  background: #212226;
}

footer p
{
  color: #fff;
}

