*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background: #767676;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    margin: 0;
    text-align: center;
    align-items: center;
}
.container{
    background: linear-gradient(#000,#767676);
    text-align: center;
    align-items: center;
}
.sec1{
    width: 100%;
    height: 100vh;
    padding: 78px 0px;
}
.sec1 img{
    height: auto;
    width: 480px;
    border-radius: 20px;
}
.text{
    width: 550px;
}
.text h1{
    color: white;
    font-size: 60px;
    text-transform: capitalize;
    margin-bottom: 20px;
}
.text h5{
    color: aliceblue;
    font-size: 30px;
    margin-bottom: 25px;
    letter-spacing: 2px;
}
.text p{
    color: rgb(74, 153, 255);
    letter-spacing: 1px;
    line-height: 28px;
    text-align: justify;
    font-size: 22px;
    margin-bottom: 45px;
}
.main{
    display: flex;
    width: 1130px;
    max-width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
}
.btn{
    display: flex;
    gap: 15px;
    border-radius: 15px;
}
btn1{
     margin-left: 20px;
    margin-top: 30px;
    background: #235d93;
    border: 4px solid rgba(0, 242, 255, 0.1);
    padding: 10px 6px;
    border-radius: 5px;
    transition: 0.4s;
    position: relative;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%); 

    transition: 0.5s;
}
btn1:hover{
    background: transparent;
    border-color: #5175eb;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 242, 255, 0.1);
}
a{
    text-decoration: none; 
    color: inherit;        
    display: contents; 
}

@media screen and (max-width: 768px){
    .main{
        flex-direction: column;
        align-items: center;
    }
    .main img{
        width: 63%;
        max-width: none;
    }
    .text h1{
        font-size: 28px;
    }
    .text h5{
        font-size: 20px;
    }
    .text p{
        font-size: 14px;
    }
    .text{
        width: 80%;
        text-align: center;
    }
    btn{
        flex: 1;
        margin: 15px 5px;
    }
}