@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500&display=swap');

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
}

.header h1 {
    font-size: 32px;
    color: #333;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.study-material {
    width: 100%;
    margin-bottom: 100px;
}

.study-material h2,
.quotes h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.video {
    width: 100%;
    max-width: 360px; /* Adjust as needed */
}

.video iframe {
    width: 100%;
    height: 500px; /* Adjust as needed */
    border: 20px;
}

.quotes {
    width: 100%;
    max-width: 360px; /* Adjust as needed */
    text-align: center;
}

.quotes p {
    font-style: italic;
}

.footer {
    text-align: center;
    margin-top: 20px;
    color: #666;
}
