.header {
    width: 100%;
    height: 100px;
    line-height: 100px;
    background-color: #50a3fc;
    margin-bottom: 15px;
    text-align: center;
    color: #fff;
}
.content {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 20px;
	margin: 20px;
}

a{
	text-decoration: none;
}

.app-grid-item {
	padding: 20px;
	text-align: center;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: scale(1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.app-grid-item:hover {
    transform: scale(1.1);
    border-radius: 0;
    background-color: #50a3fc;
    color: #fff;
    /* animation: rote 0.5s  linear; */
}

/* @keyframes rote {
    0% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(0deg);
    }
} */

.app-grid-item img {
	width: 120px;
	height: 120px;
	object-fit: contain;
}

.app-grid-item a {
	display: inline-block;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	transition: background-color 0.3s ease;
}
