@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins',sans-serif;
   
}

:root{
    --text-color:#fff;
    --bg-color:#000;
    --main-color:#ffa343;
}

body{
    background: var(--bg-color);
}

.container{
    width: 100%;
    height: 100vh;
    padding: 0 8%;
   
    
}

.container h1{
    text-align: center;
    padding-top: 10%;
    margin-bottom: 60px;
    font-weight: 600;
    position: relative;
    color: var(--text-color);
}

.container h1::after{
    content: '';
    background: var(--main-color);
    width: 100px;
    height: 5px;
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);

}

.row{
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px, 1fr));
    grid-gap: 30px;
}

.service{
    text-align: center;
    padding: 25px 10px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    background: transparent;
    transition: transform  0.5s, background 0.5s;
    color: var(--text-color);
}

.service i{
    font-size: 40px;
    margin-bottom: 10px;
    color: var(--main-color);
}

.service h2{
    font-weight: 600;
    margin-bottom: 8px;
}

.service:hover{
    background: var(--main-color);
    color:var(--bg-color);
    transform: scale(1.05);

}

.service:hover i{
    color:  var(--bg-color);
}