
@import url('https://fonts.googleapis.com/css2?family=Creepster&family=Michroma&family=Poppins:ital,wght@0,100;0,300;0,600;0,700;1,100;1,200;1,500;1,700&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Creepster', cursive;
    font-family: 'Michroma', sans-serif;
   font-family: 'Poppins', sans-serif;
}
 .aboutash{
       width:  100% ;
       height: 100vh ;
       background-color : #161922;  
       display: flex;
       justify-content: center;
       align-items:center ;
 }
  .aboutash .contentash img{
          height: auto;
          width: 600px;
          max-width: 100%;
  }
.textash {
           width: 550px;
           max-width: 100%;
           padding: 010px;
}
.contentash{
             width: 1280px;
             max-width : 95%;
             display:flex;
             flex-wrap: wrap;
             align-items: center;
             justify-content: space-around;

}
.textash h1{
               color: #ffcc74;
               font-size:85px;
               margin-bottom:20px;
               text-transform: capitalize;

}
.textash  h5 {
                 color: white;
                font-size: 25px;
                margin-bottom :25px;
                text-transform: capitalize;
                letter-spacing: 2px;
 }
.textash p{
      color:#c0c4d6;
      font-size: 18px;
      line-height:28px ;
      letter-spacing: 1px;
      margin-bottom: 45px;
}
button{
            background-color: #ffcc74;
            color: black;
            border: 2px solid transparent;
            text-decoration:none;
            padding:10px 30px;
            border-radius:  30px;
            font-size: 17px;
            font-weight: bold;
}
button:hover{
    transform: scale(1.2);
    background-color: transparent;
    border:2px solid#ffcc74;
    color: #ffcc74;
    transition: .4s;
    cursor: pointer;

}
@media screen and (max-width:1180px) {
    .aboutash{
        width: 100%;
        height: auto;
        padding: 70px 0px;
    }
}
@media screen and (max-width:650px) {
    .aboutash .contentash img{  
       margin-bottom : 35px;
    }
    .textash h1{
        font-size: 60px;
        margin-bottom: 25px;
    }
}














