main {
    padding: 40px;
    box-sizing: border-box;
}

.tutorial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.tutorial-image-container {
    width: 100%;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.container-title {
    font-size: 2.5rem;
    color: #2D3748;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.tutorial-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    pointer-events: none; /* Disables hover effects */
    -webkit-user-drag: none; /* Prevents dragging on webkit browsers */
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

@media (max-width: 768px) {
    main {
        padding: 20px;
    }

    .container-title {
        font-size: 2rem;
    }

    .tutorial-image-container {
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .container-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .tutorial-image-container {
        padding: 5px;
    }
}