* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
    font-family: 'Exo', sans-serif;
  border: 1px solid rgb(180, 3, 3);
}
span{
    color: rgb(180, 3, 3);
    font-size: 50;
}
.header {
  width: 100%;
  height: 90vh;
  background-color: aliceblue;
}

p{
    margin-top: 10px;
    font-size: 18px;
    color: gray;
}

.shape {
    width: 400px;
    height: 90vh;
    background-color: rgb(180, 3, 3);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    position: absolute;
    right: 10%;
    
}
.circle {
  width: 400px;
  height: 400px;
  clip-path: circle(50% at 50% 50%);
  background-image: url(./company.jpg);
  background-size: cover;
  background-position: center;
  position: absolute;
  right: 10%;
  top: 10%;
}
h1{
    font-size: 44px;
}
.text{
    margin-left: 100px;
    position: absolute;
    width: 30%;
    top: 20%;
    
}
.media{
   margin-top:15px ;
    font-size: 26px;
    letter-spacing: 10px;
    color:  rgb(180, 3, 3);
    
}
.fab{
    margin-top: 30px;
    cursor: pointer;
}
