*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: grid;
background: linear-gradient(80deg , rgb(1, 14, 20) , rgb(1, 10, 15));
}
.navbar{
    display: flex;
    justify-content: space-between;
    padding: 20px;
}
.navbar .links{
    display: flex;
    gap: 30px;
}
.navbar .links a{
      text-decoration: none;
        color: white;
        font-weight: 600;
        overflow: hidden;
        transition: ease-in-out 0.9s;
    position: relative;
}
.navbar .links a::after{
        content: '';
        bottom: 10px;
        left: 0;
        background: rgb(243, 92, 5);
        width: 0vw;
        height: 5px;
        position: absolute;
        border-radius: 10px;
        transition: ease-in-out 0.6s;
    }
    .navbar .links a:hover::after{
        width: 100%;
    }
    .heading{
        display: flex;
    }
    .navbar .heading p{
        font-size: 2em;
        color: rgb(6, 85, 149);
    }
    .cheesup{
        display: flex;
        color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 80vh;
   width: 100%;
}
.box{
    display: flex;
    box-shadow: 10px 5px 10px 5px rgb(1, 10, 15);   
     }

    .box p{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 80px;
        height: 70px;
        background: #333;
        box-shadow: 10px 5px 10px 5px rgb(1, 10, 15);
    }
    .box p i{
        font-size: 2em;
    }
    