body { 
    font-family: Arial, sans-serif; 
    max-width: 800px; 
    margin: 0 auto; 
    padding: 20px; 
    line-height: 1.6;
    }
        
#videos { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); 
    gap: 20px; 
    }
	
.video { 
    border: 1px solid #ddd; 
    padding: 10px; 
    text-align: center; 
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
	
.video img { 
    max-width: 100%; 
    border-radius: 3px;
    }

.video h3 {
    margin: 10px 0;
    font-size: 14px;
    }

.video p {
    margin: 5px 0;
    font-size: 12px;
    color: #666;
    }

#menu {
    text-align: right;
    margin-bottom: 20px;
    }

#menu a {
    margin-left: 10px;
    text-decoration: none;
    color: #1a73e8;
    }
	
#menu a:hover {
    text-decoration: underline;
    }
        
button {
    background-color: #1a73e8;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #185abc;
}

