/* General body and page styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f8f8;
    margin: 0;
    padding: 0;
    text-align: center;
}

/* Container for shorts */
.container {
    width: 80%;
    margin: 20px auto;
}

/* Video grid layout */
.short {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin: 15px 0;
    padding: 10px;
    max-width: 100%;
}

.short h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.short p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.footerbanner {
	max-width: 100%;
    padding: 20px;
	background-color: blue;
	color: white;
}

/* Responsive grid */
@media (min-width: 768px) {
    .short {
        width: 48%;
        display: inline-block;
        margin-right: 4%;
    }
    .short:nth-child(2n) {
        margin-right: 0;
    }
}

@media (min-width: 1024px) {
    .short {
        width: 32%;
    }
}
