<head>
    <meta charset="UTF-8">
    <title>Momazos.mx</title>
    <style>
        body {
            background-color: #3c3c3c;
            color: white;
            font-family: Arial, sans-serif;
        }
body {
            background-color: #3c3c3c;
            color: white;
            font-family: Arial, sans-serif;
        }

        header {
            background-color: white;
            color: black;
            padding: 10px;
            font-weight: bold;
        }

        .url-bar {
            background-color: #888;
            padding: 10px;
        }

        h1 {
            text-align: center;
            font-size: 36px;
            margin: 20px 0 10px 0;
        }


        .menu {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .menu a {
            background-color: #888;
            padding: 10px 15px;
            text-decoration: none;
            color: white;
            font-weight: bold;
        }

        .main {
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            margin-bottom: 20px;
        }

        .video-box {
            width: 65%;
            background-color: #222;
            padding: 15px;
        }

        .video-box iframe {
            width: 100%;
            height: 315px;
            margin-top: 10px;
        }

        .comments {
            width: 30%;
        }

        .comments-title {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .comment-box {
            background-color: #222;
            padding: 10px;
            margin-top: 5px;
        }

        .carousel {
            background-color: #222;
            padding: 15px;
            text-align: center;
        }

        .carousel-items {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 10px;
        }

        .carousel-items iframe {
            width: 100%;
            max-width: 220px;
            height: 120px;
        }
    </style>
</head>