<!DOCTYPE html>
<html lang="es">
<head>
    <meta charset="UTF-8">
    <title>Clases Particulares Mendoza</title>
    <style>
        .logo-container {
            text-align: center;
            font-family: 'DejaVu Serif', serif;
            color: #FFCC00;
            background-color: #FFFFFF;
            padding: 20px;
        }
        .logo-text-large {
            font-size: 60px;
            margin: 0;
        }
        .logo-text-small {
            font-size: 40px;
            margin: 0;
        }
        .book-icon {
            width: 60px;
            height: 60px;
            display: inline-block;
            border: 5px solid #FFCC00;
            margin-bottom: 20px;
            position: relative;
        }
        .book-icon::before,
        .book-icon::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 2px;
            background-color: #FFCC00;
        }
    </style>
</head>
<body>
    <div class="logo-container">
        <div class="book-icon"></div>
        <h1 class="logo-text-large">Clases Particulares</h1>
        <h2 class="logo-text-small">Mendoza</h2>
    </div>
</body>
</html>