.chatgpt{
    width: 20%;
    margin: auto;
}

.chatgpt img{
    margin: auto;
    display: block;
    width: 10rem;
	background: -webkit-linear-gradient(to bottom, rgba(64,77,149,.05), rgba(64,77,149,.15), rgba(64,77,149,.25), rgba(64,77,149,.5), rgba(64,77,149,.25), rgba(64,77,149,.15), rgba(64,77,149,.05)); 
    background: linear-gradient(to bottom, rgba(64,77,149,.05), rgba(64,77,149,.15), rgba(64,77,149,.25), rgba(64,77,149,.5), rgba(64,77,149,.25), rgba(64,77,149,.15), rgba(64,77,149,.05)); 
    border-radius: .625rem;
    box-shadow: 0 0 .625rem #bfc9ff;
    padding: .3125rem .375rem;
	cursor: pointer;
	transition: all 0.5s;
}

.chatgpt img:hover{
	background: -webkit-linear-gradient(to bottom, #05070d, #101426, #1b2140, #374280, #1b2140, #101426, #05070d); 
    background: linear-gradient(to bottom, #05070d, #101426, #1b2140, #374280, #1b2140, #101426, #05070d);
    box-shadow: 0 0 .875rem #bfc9ff;
	transform: scale(1.2);
}

@media (max-width: 599px){
    .chatgpt{
        width: 35%;
    }
    .chatgpt img{
        width: 90%;
    }
}